.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'georgia';
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'georgia';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'georgia';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'georgia';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'georgia';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #008000 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9f35 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #008000 !important;
  border-color: #008000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #002900 !important;
  border-color: #002900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #002900 !important;
  border-color: #002900 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9f35 !important;
  border-color: #ff9f35 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #dd7400 !important;
  border-color: #dd7400 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #dd7400 !important;
  border-color: #dd7400 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #008000;
  color: #008000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002900 !important;
  background-color: transparent!important;
  border-color: #002900 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #008000 !important;
  border-color: #008000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9f35;
  color: #ff9f35;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #dd7400 !important;
  background-color: transparent!important;
  border-color: #dd7400 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9f35 !important;
  border-color: #ff9f35 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #008000 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9f35 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #001a00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ce6c00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9f35;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #00ff00;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'georgia';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'georgia';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !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%;
  width: 100%;
  height: auto;
}
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='%236592e6' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZrmvJGTeX {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/coaching-entreprise-sportif-1.webp");
}
.cid-uZrmvJGTeX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrmvJGTeX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrmvJGTeX H3 {
  text-align: left;
}
.cid-uZrmvJGTeX .mbr-text,
.cid-uZrmvJGTeX .mbr-section-btn {
  text-align: left;
}
.cid-uZr1Zoo9Xs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uZr1Zoo9Xs .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uZr1Zoo9Xs .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uZr1Zoo9Xs .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uZr1Zoo9Xs .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uZr1Zoo9Xs .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-uZr1Zoo9Xs .card-title {
  color: #4479d9;
}
.cid-uZr1Zoo9Xs .mbr-section-title {
  color: #4479d9;
}
.cid-v6v019Sykh {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/gestion-situation-complexes.webp");
}
.cid-v6v019Sykh .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-v6v019Sykh * {
  box-sizing: border-box;
}
.cid-v6v019Sykh body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 5rem 1rem;
}
.cid-v6v019Sykh p {
  margin: 0 0 1rem;
}
.cid-v6v019Sykh img {
  display: block;
  width: 100%;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
}
.cid-v6v019Sykh .flex-container {
  max-width: 30rem;
  margin: 0 auto 5rem auto;
  filter: drop-shadow(16px 16px 13px #232323);
}
.cid-v6v019Sykh .col {
  position: relative;
}
.cid-v6v019Sykh .col--img {
  flex: 0 0 40%;
  align-self: flex-start;
}
.cid-v6v019Sykh .col--text {
  background-color: #871431;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 19px;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
}
@media (min-width: 40em) {
  .cid-v6v019Sykh h3 {
    font-size: 2rem;
  }
  .cid-v6v019Sykh .flex-container {
    display: flex;
  }
  .cid-v6v019Sykh .col--text {
    padding: 2rem 4rem;
    margin-top: 2rem;
    margin-left: -2rem;
    z-index: -1;
  }
}
.cid-v6v019Sykh .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-v6v019Sykh P {
  color: #ffffff;
  text-align: left;
}
.cid-v6v019Sykh H3 {
  text-align: left;
  color: #ffffff;
}
.cid-uZr6gxiBwX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uZr6gxiBwX .showAlerts {
  display: block !important;
}
.cid-uZr6gxiBwX .rowflexrev {
  display: -webkit-flex;
}
.cid-uZr6gxiBwX .ws-form-alerts {
  margin-top: 1rem;
}
.cid-uZr6gxiBwX .title {
  margin-bottom: 2rem;
}
.cid-uZr6gxiBwX .mbr-section-subtitle {
  color: #6592e6;
}
.cid-uZr6gxiBwX textarea.form-control {
  min-height: 188px;
}
.cid-uZr6gxiBwX LABEL {
  color: #232323;
  display: initial;
}
.cid-uZr6gxiBwX .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uZr6gxiBwX .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uZr6gxiBwX .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uZr6gxiBwX .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uZr6gxiBwX .alert {
  margin-bottom: 0;
}
.cid-uZr6gxiBwX .alert-success {
  background-color: #70c770;
}
.cid-uZr6gxiBwX .alert-danger {
  background-color: #cc2952;
}
.cid-uZr6gxiBwX .btn {
  display: inline-flex;
}
.cid-uZr6gxiBwX .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uZr6gxiBwX .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uZr6gxiBwX .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-uZr6gxiBwX input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uZr6gxiBwX input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uZr6gxiBwX input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-uZr6gxiBwX input,
.cid-uZr6gxiBwX option,
.cid-uZr6gxiBwX textarea {
  color: #000000;
}
.cid-uZr6gxiBwX H2 {
  color: #4479d9;
}
.cid-uZs3HL7gf1 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZs3HL7gf1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZs3HL7gf1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZs3HL7gf1 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uZs3HL7gf1 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-uZs3HL7gf1 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uZs3HL7gf1 .bg-instagram:hover {
  background: #bd005c;
}
.cid-uZs3HL7gf1 .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-uZs3HL7gf1 .bg-linkedin:hover {
  background: #005582;
}
.cid-uZs3HL7gf1 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uZs3HL7gf1 [class^="socicon-"]:before,
.cid-uZs3HL7gf1 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uZs3HL7gf1 .mbr-section-title,
.cid-uZs3HL7gf1 .social-list {
  color: #4479d9;
}
.cid-v7exKFcOzq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7exKFcOzq img {
  width: 120px;
  margin: auto;
}
.cid-v7exKFcOzq .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v7exKFcOzq .card {
    max-width: 12.5%;
  }
}
.cid-v7exKFcOzq .mbr-section-subtitle {
  color: #6e6e6e;
}
.cid-v7exKFcOzq .mbr-section-title {
  color: #6e6e6e;
}
.cid-v7exLkPJE2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7exLkPJE2 img {
  width: 120px;
  margin: auto;
}
.cid-v7exLkPJE2 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v7exLkPJE2 .card {
    max-width: 12.5%;
  }
}
.cid-v7exLkPJE2 .mbr-section-subtitle {
  color: #353535;
}
.cid-v6rdwLrXBq .icon-bar {
  z-index: 100002;
  right: 0.8%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v6rdwLrXBq .icon-bar a:hover {
  background-color: #ffa409;
}
.cid-v6rdwLrXBq .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 16px;
}
.cid-v6rdwLrXBq .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-v6rdwLrXBq .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-v6rdwLrXBq .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-v6rdwLrXBq .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-v6rdwLrXBq .corner-ribbon.top-zen {
  top: auto;
  right: -50px;
  bottom: 25px;
  left: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-v6rdwLrXBq P {
  color: #232323;
}
.cid-v6rdwLrXBq DIV {
  color: #ffffff;
}
.cid-v6rdwLrXBq H10 {
  color: #767676;
}
.cid-v6rdwLrXBq .hidden {
  display: none;
}
.cid-v6rdwLrXBq div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZrlhpgqSN {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/coaching-entreprise-sportif-1.webp");
}
.cid-uZrlhpgqSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrlhpgqSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrlhpgqSN H3 {
  text-align: left;
}
.cid-uZrlhpgqSN .mbr-text,
.cid-uZrlhpgqSN .mbr-section-btn {
  text-align: left;
}
.cid-uZrgyOrE6T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZrgyOrE6T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrgyOrE6T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZrgyOrE6T .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZrgyOrE6T .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uZrgyOrE6T .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZrhrSWSWg {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZrhrSWSWg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrhrSWSWg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrhrSWSWg .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uZrhrSWSWg .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZrhrSWSWg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uZrhrSWSWg .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZrOzBoI2A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZrS7rKiOx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZqGIoTO41 {
  background-image: url("../../../assets/images/coaching-entreprise-sportif-1.webp");
}
.cid-uZqGIoTO41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZqGIoTO41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZqGIoTO41 .mbr-section-title {
  text-align: center;
}
.cid-uZqGIoTO41 .mbr-text,
.cid-uZqGIoTO41 .mbr-section-btn {
  text-align: center;
}
.cid-uZqEldn09F {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v5RP3gcX9D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2fff2;
}
.cid-v5RP3gcX9D .mbr-section-title {
  color: #008000;
}
.cid-v5RP3gcX9D .mbr-section-subtitle {
  color: #289304;
}
.cid-v5RPteek08 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffbf6;
}
.cid-v5RPteek08 .mbr-section-title {
  color: #ff9f35;
}
.cid-v5RPteek08 .mbr-section-subtitle {
  color: #ff9f35;
}
.cid-uZqEQCEWem {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZqEQCEWem .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uZqEQCEWem .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uZqEQCEWem .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #008000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v5PCVNkSJ5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v5PCVNkSJ5 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-v5PCVNkSJ5 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-v5PCVNkSJ5 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ff9f35;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-v5RNKMTnL5 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v5RNKMTnL5 .line {
  background-color: #4479d9;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v5Qzf26b4n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v5Qzf26b4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Qzf26b4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v5Qzf26b4n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v5Qzf26b4n .row {
  flex-direction: row-reverse;
}
.cid-v5Qzf26b4n img {
  width: 100%;
}
.cid-uZqFbqJHT8 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZqFbqJHT8 .mbr-text {
  text-align: center;
}
.cid-v5QHOsaeSa {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v5QHOsaeSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5QHOsaeSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5QHOsaeSa .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-v5QHOsaeSa .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5QHOsaeSa .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-v5QHOsaeSa .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v5QHOsaeSa .row .row {
    flex-direction: column-reverse;
  }
  .cid-v5QHOsaeSa .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v5QHOsaeSa .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v5QHOsaeSa .card-subtitle {
  color: #0095ff;
}
.cid-v5QHOsaeSa .mbr-text {
  color: #555555;
}
.cid-v5QHOsaeSa .mbr-text,
.cid-v5QHOsaeSa .mbr-section-btn {
  text-align: justify;
}
.cid-v5QHOsaeSa .card-title {
  color: #353535;
}
.cid-uZqR7RYEIZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZqR7RYEIZ img {
  width: 120px;
  margin: auto;
}
.cid-uZqR7RYEIZ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uZqR7RYEIZ .card {
    max-width: 12.5%;
  }
}
.cid-uZqR7RYEIZ .mbr-section-subtitle {
  color: #6e6e6e;
}
.cid-uZqR7RYEIZ .mbr-section-title {
  color: #6e6e6e;
}
.cid-v5Sc2YjuIU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v5Sc2YjuIU img {
  width: 120px;
  margin: auto;
}
.cid-v5Sc2YjuIU .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v5Sc2YjuIU .card {
    max-width: 12.5%;
  }
}
.cid-v5Sc2YjuIU .mbr-section-subtitle {
  color: #353535;
}
.cid-sFzIA7KGYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sFzIA7KGYz .card-title {
  color: #4479d9;
}
.cid-v621nCjHqS {
  padding-top: 30px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #6592e6, #fafafa);
}
.cid-v621nCjHqS .pulsingButton {
  position: relative;
  width: 150px;
  height: 150px;
  border: none;
  box-shadow: 0 0 0 0 #642100;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/-halterophile.webp");
  background-size: 70%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 48px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 48px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 48px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 48px rgba(232, 76, 61, 0);
  }
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v6let0jbFX .icon-bar {
  z-index: 100002;
  right: 0.8%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v6let0jbFX .icon-bar a:hover {
  background-color: #ffa409;
}
.cid-v6let0jbFX .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 16px;
}
.cid-v6let0jbFX .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-v6let0jbFX .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-v6let0jbFX .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#ffa409, #64c08a);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-v6let0jbFX .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#64c08a, #ffa409);
}
.cid-v6let0jbFX .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-v6let0jbFX P {
  color: #232323;
}
.cid-v6let0jbFX DIV {
  color: #ffffff;
}
.cid-v6let0jbFX H10 {
  color: #767676;
}
.cid-v6let0jbFX .hidden {
  display: none;
}
.cid-v6let0jbFX div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-v9I7QVeU6l {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-v9I7QVeU6l img {
  width: auto;
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZqzv3v78q {
  background-image: url("../../../assets/images/thomas-competition-2.webp");
}
.cid-uZqzv3v78q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZqzv3v78q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZqzv3v78q .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uZqzv3v78q .mbr-text,
.cid-uZqzv3v78q .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uZqzv3v78q .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-v62kax1Yrq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v66uigV5qn {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v66uigV5qn .item-subtitle {
  line-height: 1.2;
  color: #000000;
  text-align: center;
}
.cid-v66uigV5qn img,
.cid-v66uigV5qn .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v66uigV5qn .item:focus,
.cid-v66uigV5qn span:focus {
  outline: none;
}
.cid-v66uigV5qn .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v66uigV5qn .item {
    margin-bottom: 1rem;
  }
}
.cid-v66uigV5qn .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v66uigV5qn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66uigV5qn .mbr-section-title {
  color: #232323;
}
.cid-v66uigV5qn .mbr-text,
.cid-v66uigV5qn .mbr-section-btn {
  color: #a6a99c;
  text-align: center;
}
.cid-v66uigV5qn .item-title {
  color: #232323;
  text-align: center;
}
.cid-v66uigV5qn .content-head {
  max-width: 800px;
}
.cid-uZrp0VYEIQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZrp0VYEIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrp0VYEIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrp0VYEIQ .mbr-section-title {
  color: #e5ab3b;
}
.cid-v5Ssy3CzqC {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffe2aa;
}
.cid-v5Ssy3CzqC .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v5Ssy3CzqC .item {
    margin-bottom: 1rem;
  }
}
.cid-v5Ssy3CzqC .item-wrapper {
  position: relative;
}
.cid-v5Ssy3CzqC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-v5Ssy3CzqC .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v5Ssy3CzqC .carousel-control,
.cid-v5Ssy3CzqC .close {
  background: #1b1b1b;
}
.cid-v5Ssy3CzqC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5Ssy3CzqC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5Ssy3CzqC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5Ssy3CzqC .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5Ssy3CzqC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5Ssy3CzqC .close::before {
  content: '\e91a';
}
.cid-v5Ssy3CzqC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5Ssy3CzqC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5Ssy3CzqC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5Ssy3CzqC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5Ssy3CzqC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5Ssy3CzqC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5Ssy3CzqC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5Ssy3CzqC .carousel-indicators li.active,
.cid-v5Ssy3CzqC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5Ssy3CzqC .carousel-indicators li::after,
.cid-v5Ssy3CzqC .carousel-indicators li::before {
  content: none;
}
.cid-v5Ssy3CzqC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5Ssy3CzqC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5Ssy3CzqC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5Ssy3CzqC .carousel-indicators {
    display: none;
  }
}
.cid-v5Ssy3CzqC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5Ssy3CzqC .carousel-inner > .active {
  display: block;
}
.cid-v5Ssy3CzqC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5Ssy3CzqC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5Ssy3CzqC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5Ssy3CzqC .carousel-control,
  .cid-v5Ssy3CzqC .carousel-indicators,
  .cid-v5Ssy3CzqC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5Ssy3CzqC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5Ssy3CzqC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5Ssy3CzqC .carousel-indicators .active,
.cid-v5Ssy3CzqC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5Ssy3CzqC .carousel-indicators .active {
  background: #fff;
}
.cid-v5Ssy3CzqC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5Ssy3CzqC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5Ssy3CzqC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5Ssy3CzqC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5Ssy3CzqC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5Ssy3CzqC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5Ssy3CzqC .carousel {
  width: 100%;
}
.cid-v5Ssy3CzqC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5Ssy3CzqC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5Ssy3CzqC .modal.fade .modal-dialog,
.cid-v5Ssy3CzqC .modal.in .modal-dialog {
  transform: none;
}
.cid-v5Ssy3CzqC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5Ssy3CzqC .content-head {
  max-width: 800px;
}
.cid-uZruax7YGh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZruax7YGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZruax7YGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZruax7YGh .mbr-section-title {
  text-align: center;
  color: #e5ab3b;
}
.cid-uZruax7YGh .mbr-section-subtitle {
  text-align: center;
}
.cid-uZrppUNDUD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uZrppUNDUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrppUNDUD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrppUNDUD .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uZrppUNDUD .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZrppUNDUD .mbr-iconfont {
  font-size: 2rem;
  color: #e5ab3b;
  padding-right: 1.5rem;
}
.cid-v5SyqFW9Vz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v5SyqFW9Vz img,
.cid-v5SyqFW9Vz .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v5SyqFW9Vz .item:focus,
.cid-v5SyqFW9Vz span:focus {
  outline: none;
}
.cid-v5SyqFW9Vz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v5SyqFW9Vz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v5SyqFW9Vz .item {
  padding: 0;
  margin: 0;
}
.cid-v5SyqFW9Vz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5SyqFW9Vz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5SyqFW9Vz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5SyqFW9Vz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5SyqFW9Vz .mbr-section-title {
  color: #232323;
}
.cid-uZsc9wLNHj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZsc9wLNHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZsc9wLNHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZsc9wLNHj .mbr-section-title {
  color: #e5ab3b;
}
.cid-uZsbbCRHYV {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZsbbCRHYV .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uZsbbCRHYV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uZsbbCRHYV .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #e5ab3b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uZrzeAwwsi {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZrzeAwwsi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrzeAwwsi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZrzeAwwsi .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uZrzeAwwsi .item {
    margin-bottom: 4rem;
  }
}
.cid-uZrzeAwwsi .item:last-child .icon-box:before {
  display: none;
}
.cid-uZrzeAwwsi .item.last .icon-box:before {
  display: none;
}
.cid-uZrzeAwwsi .icon-box {
  background: #e5ab3b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uZrzeAwwsi .icon-box {
    margin-right: 1rem;
  }
}
.cid-uZrzeAwwsi .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #e5ab3b;
  transform: translate(-50%, 0);
}
.cid-uZrzeAwwsi span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uZrzeAwwsi .card {
    margin-bottom: 2rem;
  }
  .cid-uZrzeAwwsi .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uZrzeAwwsi .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uZrzeAwwsi .icon-box::before {
    top: 114%;
  }
}
.cid-uZrzeAwwsi .card-title,
.cid-uZrzeAwwsi .card-box {
  color: #e5ab3b;
}
.cid-uZrzeAwwsi .mbr-text,
.cid-uZrzeAwwsi .mbr-section-btn {
  color: #353535;
}
.cid-uZrUhzF9sW {
  background-image: url("../../../assets/images/wallpaper-bas.webp");
}
.cid-uZrUhzF9sW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZrUhzF9sW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7hBcAwNmJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7hBcAwNmJ img {
  width: 120px;
  margin: auto;
}
.cid-v7hBcAwNmJ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v7hBcAwNmJ .card {
    max-width: 12.5%;
  }
}
.cid-v7hBcAwNmJ .mbr-section-subtitle {
  color: #6e6e6e;
}
.cid-v7hBcAwNmJ .mbr-section-title {
  color: #ff9f35;
}
.cid-v6llxvbWcu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v6llxvbWcu img {
  width: 120px;
  margin: auto;
}
.cid-v6llxvbWcu .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6llxvbWcu .card {
    max-width: 12.5%;
  }
}
.cid-v6llxvbWcu .mbr-section-subtitle {
  color: #353535;
}
.cid-v3yVBWrSjQ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v3yVBWrSjQ .showAlerts {
  display: block !important;
}
.cid-v3yVBWrSjQ .rowflexrev {
  display: -webkit-flex;
}
.cid-v3yVBWrSjQ .ws-form-alerts {
  margin-top: 1rem;
}
.cid-v3yVBWrSjQ .title {
  margin-bottom: 2rem;
}
.cid-v3yVBWrSjQ .mbr-section-subtitle {
  color: #767676;
}
.cid-v3yVBWrSjQ textarea.form-control {
  min-height: 188px;
}
.cid-v3yVBWrSjQ LABEL {
  color: #232323;
  display: initial;
}
.cid-v3yVBWrSjQ .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-v3yVBWrSjQ .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-v3yVBWrSjQ .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-v3yVBWrSjQ .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-v3yVBWrSjQ .alert {
  margin-bottom: 0;
}
.cid-v3yVBWrSjQ .alert-success {
  background-color: #70c770;
}
.cid-v3yVBWrSjQ .alert-danger {
  background-color: #ff4a52;
}
.cid-v3yVBWrSjQ .btn {
  display: inline-flex;
}
.cid-v3yVBWrSjQ .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-v3yVBWrSjQ .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-v3yVBWrSjQ .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-v3yVBWrSjQ input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-v3yVBWrSjQ input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-v3yVBWrSjQ input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-v3yVBWrSjQ input,
.cid-v3yVBWrSjQ option,
.cid-v3yVBWrSjQ textarea {
  color: #000000;
}
.cid-v3yVBWrSjQ H2 {
  color: #ff9f35;
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v6WEEl6twB img {
  width: auto;
}
.cid-v6WEEl6twB .news {
  width: 166px;
  background-color: #ff3366;
  height: 27px;
}
.cid-v6WEEl6twB .news-scroll a {
  text-decoration: none;
}
.cid-v6WEEl6twB .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff3366;
  border-radius: 50%;
  display: inline-block;
}
.cid-v6WEEl6twB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v6WEEl6twB .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v6WEEl6twB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v6WEEl6twB a {
  font-style: normal;
}
.cid-v6WEEl6twB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v6WEEl6twB .dropdown-item:after {
  display: none;
}
.cid-v6WEEl6twB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-v6WEEl6twB .content-text {
  margin-bottom: 0;
}
.cid-v6WEEl6twB .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v6WEEl6twB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v6WEEl6twB .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v6WEEl6twB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-v6WEEl6twB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v6WEEl6twB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v6WEEl6twB .nav-dropdown .link {
  font-weight: 400;
}
.cid-v6WEEl6twB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v6WEEl6twB .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v6WEEl6twB .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #767676;
}
.cid-v6WEEl6twB .menu-content-top.show {
  display: block;
}
.cid-v6WEEl6twB .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v6WEEl6twB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-v6WEEl6twB .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v6WEEl6twB .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v6WEEl6twB img {
    height: 3.8rem !important;
  }
  .cid-v6WEEl6twB .btn {
    display: flex;
  }
  .cid-v6WEEl6twB button.navbar-toggler {
    display: block;
  }
  .cid-v6WEEl6twB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v6WEEl6twB .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v6WEEl6twB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing,
  .cid-v6WEEl6twB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v6WEEl6twB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v6WEEl6twB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v6WEEl6twB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .navbar .menu-content-top {
    display: block;
  }
  .cid-v6WEEl6twB .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v6WEEl6twB .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v6WEEl6twB .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-v6WEEl6twB .menu-bottom {
    display: flex;
  }
  .cid-v6WEEl6twB .navbar {
    display: block;
    padding: 0;
  }
  .cid-v6WEEl6twB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v6WEEl6twB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v6WEEl6twB .navbar-toggler {
    display: none;
  }
}
.cid-v6WEEl6twB .navbar-short .menu-content-top {
  border: none;
}
.cid-v6WEEl6twB .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v6WEEl6twB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v6WEEl6twB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v6WEEl6twB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v6WEEl6twB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v6WEEl6twB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v6WEEl6twB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v6WEEl6twB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-v6WEEl6twB button.navbar-toggler:focus {
  outline: none;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v6WEEl6twB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v6WEEl6twB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v6WEEl6twB .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v6WEEl6twB .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v6WEEl6twB .collapsed .btn {
  display: flex;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v6WEEl6twB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v6WEEl6twB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6WEEl6twB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v6WEEl6twB .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v6WEEl6twB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v6WEEl6twB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v6WEEl6twB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v6WEEl6twB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v6WEEl6twB .collapsed .dropdown-item:before {
  display: none;
}
.cid-v6WEEl6twB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v6WEEl6twB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v6WEEl6twB .nav-link:focus {
  outline: none;
}
.cid-v6WEEl6twB .navbar-toggler {
  position: relative;
}
.cid-v6WEEl6twB .dropdown-item.active,
.cid-v6WEEl6twB .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-v6WEEl6twB .nav-link:hover,
.cid-v6WEEl6twB .dropdown-item:hover {
  color: #4284df;
}
.cid-v6WEEl6twB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZpXdiDmeP {
  background-image: url("../../../assets/images/entreprise.webp");
}
.cid-uZpXdiDmeP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZpXdiDmeP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZpXdiDmeP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uZpXdiDmeP .mbr-text,
.cid-uZpXdiDmeP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uZpXdiDmeP .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v5SgvB88wj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v5SjNxIdCq {
  display: flex;
  padding-top: 20rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/pbc-coach.webp");
}
.cid-v5SjNxIdCq .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-v5SjNxIdCq {
    align-items: flex-end;
  }
  .cid-v5SjNxIdCq .row {
    justify-content: center;
  }
  .cid-v5SjNxIdCq .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v5SjNxIdCq .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v5SjNxIdCq {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-v5SjNxIdCq .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v5SjNxIdCq .content-wrap {
    width: 100%;
  }
}
.cid-v5SjNxIdCq .mbr-section-title,
.cid-v5SjNxIdCq .mbr-section-subtitle {
  text-align: center;
}
.cid-v5SjNxIdCq .mbr-text,
.cid-v5SjNxIdCq .mbr-section-btn {
  text-align: center;
}
.cid-uZpYOtvUiw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/entreprise.webp");
}
.cid-uZpYOtvUiw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZpYOtvUiw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZpYOtvUiw .mbr-text {
  color: #767676;
}
.cid-uZpYOtvUiw .mbr-section-subtitle {
  color: #767676;
}
.cid-uZpYOtvUiw .title .num {
  width: 100%;
  display: block;
}
.cid-uZpYOtvUiw .title .card-title {
  z-index: 1;
}
.cid-uZpYOtvUiw .num {
  color: #64c08a;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uZpYOtvUiw * {
    text-align: center !important;
  }
  .cid-uZpYOtvUiw .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uZpYOtvUiw .mbr-section-title,
.cid-uZpYOtvUiw .card-box {
  color: #232323;
}
.cid-uZpYOtvUiw .card-title,
.cid-uZpYOtvUiw .card-img {
  text-align: center;
}
.cid-v5Sk5iOgnk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/entreprise.webp");
}
.cid-v5Sk5iOgnk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Sk5iOgnk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Sk5iOgnk .mbr-text {
  color: #767676;
}
.cid-v5Sk5iOgnk .mbr-section-subtitle {
  color: #767676;
}
.cid-v5Sk5iOgnk .title .num {
  width: 100%;
  display: block;
}
.cid-v5Sk5iOgnk .title .card-title {
  z-index: 1;
}
.cid-v5Sk5iOgnk .num {
  color: #64c08a;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v5Sk5iOgnk * {
    text-align: center !important;
  }
  .cid-v5Sk5iOgnk .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v5Sk5iOgnk .mbr-section-title,
.cid-v5Sk5iOgnk .card-box {
  color: #232323;
}
.cid-v5Sk5iOgnk .card-title,
.cid-v5Sk5iOgnk .card-img {
  text-align: center;
}
.cid-uZq1iZclME {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uZq1iZclME img,
.cid-uZq1iZclME .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-uZq1iZclME .item:focus,
.cid-uZq1iZclME span:focus {
  outline: none;
}
.cid-uZq1iZclME .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZq1iZclME .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZq1iZclME .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZq1iZclME .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZq1iZclME .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZq1iZclME .mbr-section-title {
  color: #232323;
}
.cid-uZq1iZclME .mbr-text,
.cid-uZq1iZclME .mbr-section-btn {
  text-align: left;
}
.cid-uZq1iZclME .item-title {
  text-align: left;
  color: #64c08a;
}
.cid-uZq1iZclME .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uZq3IbfkpN {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZq3IbfkpN .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uZq3IbfkpN .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uZq3IbfkpN .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #c6ffdd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uZq3IbfkpN .mbr-text UL {
  text-align: left;
}
.cid-uZq3IbfkpN .mbr-section-title {
  color: #64c08a;
}
.cid-v6llKjg7kQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v6llKjg7kQ img {
  width: 120px;
  margin: auto;
}
.cid-v6llKjg7kQ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6llKjg7kQ .card {
    max-width: 12.5%;
  }
}
.cid-v6llKjg7kQ .mbr-section-subtitle {
  color: #6e6e6e;
}
.cid-v6llKjg7kQ .mbr-section-title {
  color: #64c08a;
}
.cid-v6llLaVCDA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v6llLaVCDA img {
  width: 120px;
  margin: auto;
}
.cid-v6llLaVCDA .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v6llLaVCDA .card {
    max-width: 12.5%;
  }
}
.cid-v6llLaVCDA .mbr-section-subtitle {
  color: #353535;
}
.cid-v3yUuTvIQ8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3yUuTvIQ8 .showAlerts {
  display: block !important;
}
.cid-v3yUuTvIQ8 .rowflexrev {
  display: -webkit-flex;
}
.cid-v3yUuTvIQ8 .ws-form-alerts {
  margin-top: 1rem;
}
.cid-v3yUuTvIQ8 .title {
  margin-bottom: 2rem;
}
.cid-v3yUuTvIQ8 .mbr-section-subtitle {
  color: #767676;
}
.cid-v3yUuTvIQ8 textarea.form-control {
  min-height: 188px;
}
.cid-v3yUuTvIQ8 LABEL {
  color: #232323;
  display: initial;
}
.cid-v3yUuTvIQ8 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-v3yUuTvIQ8 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-v3yUuTvIQ8 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-v3yUuTvIQ8 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-v3yUuTvIQ8 .alert {
  margin-bottom: 0;
}
.cid-v3yUuTvIQ8 .alert-success {
  background-color: #70c770;
}
.cid-v3yUuTvIQ8 .alert-danger {
  background-color: #ff4a52;
}
.cid-v3yUuTvIQ8 .btn {
  display: inline-flex;
}
.cid-v3yUuTvIQ8 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-v3yUuTvIQ8 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-v3yUuTvIQ8 .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-v3yUuTvIQ8 input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-v3yUuTvIQ8 input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-v3yUuTvIQ8 input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-v3yUuTvIQ8 input,
.cid-v3yUuTvIQ8 option,
.cid-v3yUuTvIQ8 textarea {
  color: #000000;
}
.cid-v3yUuTvIQ8 H2 {
  color: #64c08a;
}
.cid-v6WEzbPdVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v6WEzbPdVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WEzbPdVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WEzbPdVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v6WEzbPdVR .row {
    text-align: center;
  }
  .cid-v6WEzbPdVR .row > div {
    margin: auto;
  }
  .cid-v6WEzbPdVR .social-row {
    justify-content: center;
  }
}
.cid-v6WEzbPdVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v6WEzbPdVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v6WEzbPdVR .list {
    margin-bottom: 0rem;
  }
}
.cid-v6WEzbPdVR .mbr-text {
  color: #bbbbbb;
}
.cid-v6WEzbPdVR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v6WEzbPdVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v6WEzbPdVR div > *:last-child {
    margin-top: 0 !important;
  }
}
