body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.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-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff0e8c !important;
}
.bg-success {
  background-color: #ff0e8c !important;
}
.bg-info {
  background-color: #ff0e8c !important;
}
.bg-warning {
  background-color: #ff0e8c !important;
}
.bg-danger {
  background-color: #ff0e8c !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c10065 !important;
  border-color: #c10065 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #a70057;
  color: #a70057 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff0e8c;
  border-color: #ff0e8c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #a70057;
  color: #a70057 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ff0e8c;
  border-color: #ff0e8c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #a70057;
  color: #a70057 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff0e8c;
  border-color: #ff0e8c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #a70057;
  color: #a70057 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #ff0e8c;
  border-color: #ff0e8c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a70057;
  color: #a70057 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #ff0e8c;
  border-color: #ff0e8c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #a70057;
  color: #a70057 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #ff0e8c;
  border-color: #ff0e8c;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0e8c !important;
  border-color: #ff0e8c !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff0e8c !important;
}
.text-secondary {
  color: #ff0e8c !important;
}
.text-success {
  color: #ff0e8c !important;
}
.text-info {
  color: #ff0e8c !important;
}
.text-warning {
  color: #ff0e8c !important;
}
.text-danger {
  color: #ff0e8c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #a70057 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #a70057 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #a70057 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #a70057 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a70057 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #a70057 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #ff0e8c;
}
.alert-info {
  background-color: #ff0e8c;
}
.alert-warning {
  background-color: #ff0e8c;
}
.alert-danger {
  background-color: #ff0e8c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff0e8c;
  border-color: #ff0e8c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff0e8c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffdaed;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffdaed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffdaed;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffdaed;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffdaed;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #ff0e8c;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff0e8c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff0e8c;
  border-bottom-color: #ff0e8c;
}
.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: #ff0e8c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff0e8c !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff0e8c' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-sfF2cEWjVR {
  padding-top: 180px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/imprenta-madrid-2000x1333.webp");
}
.cid-sfF2cEWjVR H1 {
  color: #000000;
}
.cid-sfF2cEWjVR H3 {
  color: #ff0e8c;
}
.cid-sfF2cEWjVR .mbr-text,
.cid-sfF2cEWjVR .mbr-section-btn {
  color: #232323;
}
.cid-vjq5K4NBDL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .cid-vjq5K4NBDL .mbr-section-subtitle,
  .cid-vjq5K4NBDL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-vjq5KVLf66 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vjq5KVLf66 .mbr-section-subtitle {
  color: #f4f4f4;
}
.cid-vjq5KVLf66 .mbr-section-title {
  color: #f5f5f5;
}
.cid-vjq5NLw0gS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vjq5NLw0gS .card {
  display: block;
  position: relative;
}
.cid-vjq5NLw0gS .card .card-wrapper {
  background: #2e2e2e;
  height: 1%;
}
.cid-vjq5NLw0gS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vjq5NLw0gS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vjq5NLw0gS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ff0081;
}
.cid-vjq5NLw0gS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vjq5NLw0gS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vjq5NLw0gS .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vjq5NLw0gS .mbr-title {
  color: #ffffff;
}
.cid-vjq5NLw0gS .mbr-section-title {
  color: #232323;
}
.cid-vjq5ONgDTK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vjq5ONgDTK .card {
  display: block;
  position: relative;
}
.cid-vjq5ONgDTK .card .card-wrapper {
  background: #2e2e2e;
  height: 1%;
}
.cid-vjq5ONgDTK .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vjq5ONgDTK .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vjq5ONgDTK .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ff0081;
}
.cid-vjq5ONgDTK .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vjq5ONgDTK .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vjq5ONgDTK .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vjq5ONgDTK .mbr-title {
  color: #ffffff;
}
.cid-vjq5O6MlUy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vjq5O6MlUy .card {
  display: block;
  position: relative;
}
.cid-vjq5O6MlUy .card .card-wrapper {
  background: #2e2e2e;
  height: 1%;
}
.cid-vjq5O6MlUy .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-vjq5O6MlUy .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-vjq5O6MlUy .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ff0081;
}
.cid-vjq5O6MlUy .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-vjq5O6MlUy .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vjq5O6MlUy .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-vjq5O6MlUy .mbr-title {
  color: #ffffff;
}
.cid-vjqiZrH2EV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vjqiZrH2EV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vjqiZrH2EV .mbr-section-title {
  color: #f5f5f5;
}
.cid-vjqjeGZar2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vjqjeGZar2 .container-fluid {
  padding: 0 3rem;
}
.cid-vjqjeGZar2 .mbr-section-subtitle {
  color: #767676;
}
.cid-vjqjeGZar2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vjqjeGZar2 .table-wrapper {
  margin: 0 auto;
}
.cid-vjqjeGZar2 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vjqjeGZar2 table thead tr {
  border: none !important;
}
.cid-vjqjeGZar2 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-vjqjeGZar2 table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-vjqjeGZar2 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-vjqjeGZar2 tr:hover {
  background-color: #efefef !important;
}
.cid-vjqjeGZar2 .head-item:after,
.cid-vjqjeGZar2 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-vjqjeGZar2 table th,
  .cid-vjqjeGZar2 table td {
    padding: .75rem;
  }
}
.cid-vjqjeGZar2 .body-item {
  text-align: center;
}
.cid-vjqjeGZar2 .head-item {
  color: #ff0e8c;
}
.cid-vjqjeGZar2 .mbr-text {
  color: #767676;
}
.cid-vjqjeGZar2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjqjeGZar2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjqjeGZar2 .mbr-section-title,
.cid-vjqjeGZar2 .underline {
  color: #ff0e8c;
}
.cid-vjqpoSAhKw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vjqpoSAhKw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjqpoSAhKw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjqpoSAhKw .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .content-wrap {
    margin-bottom: 30px;
  }
}
.cid-vjqpoSAhKw .content-wrap .card {
  justify-content: flex-end;
}
.cid-vjqpoSAhKw .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjqpoSAhKw .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap {
  display: grid;
  flex: 1 0 0;
  gap: 20px;
  grid-auto-rows: minmax(0px, 1fr);
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  grid-template-rows: repeat(2, minmax(0px, 1fr));
  height: 1px;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
  padding: 0px;
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .items-wrapper .items-wrap {
    display: block;
    min-height: auto;
    height: auto;
  }
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap {
    margin-top: 20px;
  }
  .cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap:first-child {
    margin-top: 0;
  }
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap img {
    height: 300px;
  }
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap img:hover,
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap img:focus {
  transform: scale(1.08);
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap_2 {
  grid-column: span 2;
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap_3 {
  grid-column: 4;
  grid-row: 1 / span 2;
}
.cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap_3 img {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .items-wrapper .items-wrap .image-wrap_3 img {
    height: 300px;
  }
}
.cid-vjqpoSAhKw .mbr-section-title {
  color: #ff0e8c;
}
.cid-vjqpoSAhKw .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vjqpoSAhKw .mbr-section-btn {
    text-align: left;
  }
}
.cid-vjO2vaxN85 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vjO2vaxN85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO2vaxN85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO2vaxN85 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vjO2vaxN85 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vjO2vaxN85 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff0e8c;
}
.cid-vjO2vaxN85 .panel-body,
.cid-vjO2vaxN85 .card-header {
  padding: 1rem 0;
}
.cid-vjO2vaxN85 .panel-title-edit {
  color: #000000;
}
.cid-vjq5IJqhV0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vjq5IJqhV0 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-vjq5IJqhV0 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-vjq5IJqhV0 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjq5IJqhV0 .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-vjq5IJqhV0 .form-control {
  background: none;
  border-radius: 0px;
}
.cid-vjq5IJqhV0 textarea.form-control {
  min-height: 214.5px;
}
.cid-vjq5IJqhV0 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-vjq5IJqhV0 h4,
.cid-vjq5IJqhV0 p {
  margin: 0;
}
.cid-vjq5IJqhV0 h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-vjq5IJqhV0 h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-vjq5IJqhV0 .icon {
  color: #ff2600;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vjq5IJqhV0 h2 {
    text-align: center;
  }
  .cid-vjq5IJqhV0 h3 {
    text-align: center;
  }
  .cid-vjq5IJqhV0 .input-group-btn {
    text-align: center;
  }
  .cid-vjq5IJqhV0 .social-list {
    text-align: center;
  }
  .cid-vjq5IJqhV0 .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-vjq5IJqhV0 H2 {
  color: #656565;
}
.cid-vjq5IJqhV0 .content {
  text-align: left;
  color: #656565;
}
.cid-vjq5IJqhV0 .type {
  text-align: left;
  padding-bottom: 8px;
  color: #232323;
}
.cid-vjq5IJqhV0 .title1 {
  text-align: left;
  color: #ff0e8c;
}
.cid-vjq5IJqhV0 .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-vjq5IJqhV0 .title2 {
  color: #ff0e8c;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN4SdI7x3 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN4SdI7x3 .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN4SdI7x3 .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN4SdI7x3 .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN4SdI7x3 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN4SdI7x3 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN4SdI7x3 H1 {
  color: #767676;
}
.cid-vjN4SdI7x3 .mbr-text,
.cid-vjN4SdI7x3 .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0AqxxZ39H {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0AqxxZ39H .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0AqxxZ39H img {
    width: 90%;
  }
}
.cid-s0AqxxZ39H .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0AqxxZ39H .items {
  margin-bottom: 0;
}
.cid-s0AqxxZ39H .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0AqxxZ39H .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0AqxxZ39H .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0AqxxZ39H .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0AqxxZ39H .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0AqxxZ39H .social-list {
    justify-content: center;
  }
}
.cid-s0AqxyDi4c {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0AqxyDi4c .container-fluid {
  padding: 0 3rem;
}
.cid-s0AqxyDi4c .mbr-section-subtitle {
  color: #767676;
}
.cid-s0AqxyDi4c .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0AqxyDi4c .table-wrapper {
  margin: 0 auto;
}
.cid-s0AqxyDi4c table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0AqxyDi4c table thead tr {
  border: none !important;
}
.cid-s0AqxyDi4c table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0AqxyDi4c table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0AqxyDi4c table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0AqxyDi4c tr:hover {
  background-color: #efefef !important;
}
.cid-s0AqxyDi4c .head-item:after,
.cid-s0AqxyDi4c .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0AqxyDi4c table th,
  .cid-s0AqxyDi4c table td {
    padding: .75rem;
  }
}
.cid-s0AqxyDi4c .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0AqxyDi4c .head-item {
  color: #000000;
}
.cid-s0AqxyDi4c .mbr-text {
  color: #767676;
}
.cid-s0AqxyDi4c .mbr-section-title,
.cid-s0AqxyDi4c .underline {
  text-align: center;
}
.cid-s0MbwEjc6p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0MbwEjc6p .mbr-section-subtitle {
  color: #767676;
}
.cid-s0MbwEjc6p .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0MbwEjc6p .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0MbwEjc6p .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0MbwEjc6p .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0MbwEjc6p .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0MbwEjc6p .icon-focus,
.cid-s0MbwEjc6p .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0MbwEjc6p .icon-focus:before,
.cid-s0MbwEjc6p .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0MbwEjc6p .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0MbwEjc6p .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0MbwEjc6p ul {
  font-size: 0;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0MbwEjc6p .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0MbwEjc6p .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0MbwEjc6p .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul li:first-child,
.cid-s0MbwEjc6p .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0MbwEjc6p .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0MbwEjc6p .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0MbwEjc6p .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN5ZOygz5 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN5ZOygz5 .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN5ZOygz5 .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN5ZOygz5 .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN5ZOygz5 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN5ZOygz5 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN5ZOygz5 H1 {
  color: #767676;
}
.cid-vjN5ZOygz5 .mbr-text,
.cid-vjN5ZOygz5 .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0As63D3nW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0As63D3nW .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0As63D3nW img {
    width: 90%;
  }
}
.cid-s0As63D3nW .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0As63D3nW .items {
  margin-bottom: 0;
}
.cid-s0As63D3nW .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0As63D3nW .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0As63D3nW .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0As63D3nW .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0As63D3nW .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0As63D3nW .social-list {
    justify-content: center;
  }
}
.cid-s0Mu6CfAVb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0Mu6CfAVb .container-fluid {
  padding: 0 3rem;
}
.cid-s0Mu6CfAVb .mbr-section-subtitle {
  color: #767676;
}
.cid-s0Mu6CfAVb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0Mu6CfAVb .table-wrapper {
  margin: 0 auto;
}
.cid-s0Mu6CfAVb table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0Mu6CfAVb table thead tr {
  border: none !important;
}
.cid-s0Mu6CfAVb table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0Mu6CfAVb table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0Mu6CfAVb table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0Mu6CfAVb tr:hover {
  background-color: #efefef !important;
}
.cid-s0Mu6CfAVb .head-item:after,
.cid-s0Mu6CfAVb .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0Mu6CfAVb table th,
  .cid-s0Mu6CfAVb table td {
    padding: .75rem;
  }
}
.cid-s0Mu6CfAVb .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0Mu6CfAVb .head-item {
  color: #000000;
}
.cid-s0Mu6CfAVb .mbr-text {
  color: #767676;
}
.cid-s0Mu6CfAVb .mbr-section-title,
.cid-s0Mu6CfAVb .underline {
  text-align: center;
}
.cid-s0MlERdBfd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0MlERdBfd .mbr-section-subtitle {
  color: #767676;
}
.cid-s0MlERdBfd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0MlERdBfd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0MlERdBfd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0MlERdBfd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0MlERdBfd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0MlERdBfd .icon-focus,
.cid-s0MlERdBfd .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0MlERdBfd .icon-focus:before,
.cid-s0MlERdBfd .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0MlERdBfd .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0MlERdBfd .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0MlERdBfd ul {
  font-size: 0;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0MlERdBfd .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0MlERdBfd .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0MlERdBfd .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul li:first-child,
.cid-s0MlERdBfd .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0MlERdBfd .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0MlERdBfd .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0MlERdBfd .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-sfSOXRcUmu {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/arteflyer-madrid-2000x400.webp");
  background-position: right;
}
.cid-sfSOXRcUmu .wrapper {
  position: relative;
  border-top: 3px solid #ff0e8c;
  border-right: 3px solid #ff0e8c;
  border-left: 3px solid #ff0e8c;
  padding: 2.5rem 2.5rem;
}
.cid-sfSOXRcUmu .wrapper:before {
  content: "";
  background: #ff0e8c;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sfSOXRcUmu .wrapper:after {
  content: "";
  background: #ff0e8c;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sfSOXRcUmu img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sfSOXRcUmu .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sfSOXRcUmu H1 {
  color: #767676;
}
.cid-sfSOXRcUmu .mbr-text,
.cid-sfSOXRcUmu .mbr-section-btn {
  color: #ff0e8c;
}
.cid-vjpTiMIzgT {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vjpTiMIzgT a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-vjpTiMIzgT a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-vjpTiMIzgT .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjpTiMIzgT .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-vjpTiMIzgT .form-control {
  background: none;
  border-radius: 0px;
}
.cid-vjpTiMIzgT textarea.form-control {
  min-height: 214.5px;
}
.cid-vjpTiMIzgT .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-vjpTiMIzgT h4,
.cid-vjpTiMIzgT p {
  margin: 0;
}
.cid-vjpTiMIzgT h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-vjpTiMIzgT h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-vjpTiMIzgT .icon {
  color: #ff2600;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vjpTiMIzgT h2 {
    text-align: center;
  }
  .cid-vjpTiMIzgT h3 {
    text-align: center;
  }
  .cid-vjpTiMIzgT .input-group-btn {
    text-align: center;
  }
  .cid-vjpTiMIzgT .social-list {
    text-align: center;
  }
  .cid-vjpTiMIzgT .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-vjpTiMIzgT H2 {
  color: #656565;
}
.cid-vjpTiMIzgT .content {
  text-align: left;
  color: #656565;
}
.cid-vjpTiMIzgT .type {
  text-align: left;
  padding-bottom: 8px;
  color: #232323;
}
.cid-vjpTiMIzgT .title1 {
  text-align: left;
  color: #ff0e8c;
}
.cid-vjpTiMIzgT .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-vjpTiMIzgT .title2 {
  color: #ff0e8c;
}
.cid-sg7n4DeYQT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff0e8c;
}
.cid-sg7n4DeYQT .mbr-section-subtitle {
  color: #ff41a4;
  font-weight: 700;
}
.cid-sg7n4DeYQT .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-sg7n4DeYQT H2 {
  color: #f4f4f4;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN6vD4BWj {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN6vD4BWj .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN6vD4BWj .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN6vD4BWj .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN6vD4BWj img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN6vD4BWj .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN6vD4BWj H1 {
  color: #767676;
}
.cid-vjN6vD4BWj .mbr-text,
.cid-vjN6vD4BWj .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s1dsn8H8mE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1dsn8H8mE .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s1dsn8H8mE img {
    width: 90%;
  }
}
.cid-s1dsn8H8mE .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s1dsn8H8mE .items {
  margin-bottom: 0;
}
.cid-s1dsn8H8mE .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s1dsn8H8mE .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s1dsn8H8mE .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s1dsn8H8mE .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s1dsn8H8mE .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s1dsn8H8mE .social-list {
    justify-content: center;
  }
}
.cid-s1dsn9wGIl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dsn9wGIl .container-fluid {
  padding: 0 3rem;
}
.cid-s1dsn9wGIl .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dsn9wGIl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s1dsn9wGIl .table-wrapper {
  margin: 0 auto;
}
.cid-s1dsn9wGIl table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s1dsn9wGIl table thead tr {
  border: none !important;
}
.cid-s1dsn9wGIl table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s1dsn9wGIl table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s1dsn9wGIl table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s1dsn9wGIl tr:hover {
  background-color: #efefef !important;
}
.cid-s1dsn9wGIl .head-item:after,
.cid-s1dsn9wGIl .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s1dsn9wGIl table th,
  .cid-s1dsn9wGIl table td {
    padding: .75rem;
  }
}
.cid-s1dsn9wGIl .body-item {
  text-align: center;
  color: #000000;
}
.cid-s1dsn9wGIl .head-item {
  color: #000000;
}
.cid-s1dsn9wGIl .mbr-text {
  color: #767676;
}
.cid-s1dsn9wGIl .mbr-section-title,
.cid-s1dsn9wGIl .underline {
  text-align: center;
}
.cid-s1dsnaVCA0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dsnaVCA0 .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dsnaVCA0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s1dsnaVCA0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s1dsnaVCA0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s1dsnaVCA0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s1dsnaVCA0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s1dsnaVCA0 .icon-focus,
.cid-s1dsnaVCA0 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s1dsnaVCA0 .icon-focus:before,
.cid-s1dsnaVCA0 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1dsnaVCA0 .icon-video {
  font-size: 1.5rem !important;
}
.cid-s1dsnaVCA0 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s1dsnaVCA0 ul {
  font-size: 0;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li:first-child,
.cid-s1dsnaVCA0 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s1dsnaVCA0 .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s1dsnaVCA0 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s1dsnaVCA0 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN3hXwZIH {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN3hXwZIH .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN3hXwZIH .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN3hXwZIH .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN3hXwZIH img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN3hXwZIH .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN3hXwZIH H1 {
  color: #767676;
}
.cid-vjN3hXwZIH .mbr-text,
.cid-vjN3hXwZIH .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s1dsorDjLc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1dsorDjLc .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s1dsorDjLc img {
    width: 90%;
  }
}
.cid-s1dsorDjLc .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s1dsorDjLc .items {
  margin-bottom: 0;
}
.cid-s1dsorDjLc .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s1dsorDjLc .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s1dsorDjLc .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s1dsorDjLc .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s1dsorDjLc .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s1dsorDjLc .social-list {
    justify-content: center;
  }
}
.cid-s1dsosutVP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dsosutVP .container-fluid {
  padding: 0 3rem;
}
.cid-s1dsosutVP .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dsosutVP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s1dsosutVP .table-wrapper {
  margin: 0 auto;
}
.cid-s1dsosutVP table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s1dsosutVP table thead tr {
  border: none !important;
}
.cid-s1dsosutVP table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s1dsosutVP table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s1dsosutVP table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s1dsosutVP tr:hover {
  background-color: #efefef !important;
}
.cid-s1dsosutVP .head-item:after,
.cid-s1dsosutVP .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s1dsosutVP table th,
  .cid-s1dsosutVP table td {
    padding: .75rem;
  }
}
.cid-s1dsosutVP .body-item {
  text-align: center;
  color: #000000;
}
.cid-s1dsosutVP .head-item {
  color: #000000;
}
.cid-s1dsosutVP .mbr-text {
  color: #767676;
}
.cid-s1dsosutVP .mbr-section-title,
.cid-s1dsosutVP .underline {
  text-align: center;
}
.cid-s1dsotLE3W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dsotLE3W .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dsotLE3W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s1dsotLE3W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s1dsotLE3W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s1dsotLE3W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s1dsotLE3W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s1dsotLE3W .icon-focus,
.cid-s1dsotLE3W .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s1dsotLE3W .icon-focus:before,
.cid-s1dsotLE3W .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1dsotLE3W .icon-video {
  font-size: 1.5rem !important;
}
.cid-s1dsotLE3W .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s1dsotLE3W ul {
  font-size: 0;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s1dsotLE3W .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s1dsotLE3W .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s1dsotLE3W .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul li:first-child,
.cid-s1dsotLE3W .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s1dsotLE3W .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s1dsotLE3W .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s1dsotLE3W .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN6bCpGSF {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN6bCpGSF .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN6bCpGSF .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN6bCpGSF .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN6bCpGSF img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN6bCpGSF .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN6bCpGSF H1 {
  color: #767676;
}
.cid-vjN6bCpGSF .mbr-text,
.cid-vjN6bCpGSF .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s1dpQ1Nims {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1dpQ1Nims .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s1dpQ1Nims img {
    width: 90%;
  }
}
.cid-s1dpQ1Nims .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s1dpQ1Nims .items {
  margin-bottom: 0;
}
.cid-s1dpQ1Nims .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s1dpQ1Nims .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s1dpQ1Nims .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s1dpQ1Nims .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s1dpQ1Nims .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s1dpQ1Nims .social-list {
    justify-content: center;
  }
}
.cid-s1dpQ2rgbp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dpQ2rgbp .container-fluid {
  padding: 0 3rem;
}
.cid-s1dpQ2rgbp .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dpQ2rgbp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s1dpQ2rgbp .table-wrapper {
  margin: 0 auto;
}
.cid-s1dpQ2rgbp table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s1dpQ2rgbp table thead tr {
  border: none !important;
}
.cid-s1dpQ2rgbp table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s1dpQ2rgbp table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s1dpQ2rgbp table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s1dpQ2rgbp tr:hover {
  background-color: #efefef !important;
}
.cid-s1dpQ2rgbp .head-item:after,
.cid-s1dpQ2rgbp .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s1dpQ2rgbp table th,
  .cid-s1dpQ2rgbp table td {
    padding: .75rem;
  }
}
.cid-s1dpQ2rgbp .body-item {
  text-align: center;
  color: #000000;
}
.cid-s1dpQ2rgbp .head-item {
  color: #000000;
}
.cid-s1dpQ2rgbp .mbr-text {
  color: #767676;
}
.cid-s1dpQ2rgbp .mbr-section-title,
.cid-s1dpQ2rgbp .underline {
  text-align: center;
}
.cid-s1dpQ3xIRz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dpQ3xIRz .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dpQ3xIRz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s1dpQ3xIRz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s1dpQ3xIRz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s1dpQ3xIRz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s1dpQ3xIRz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s1dpQ3xIRz .icon-focus,
.cid-s1dpQ3xIRz .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s1dpQ3xIRz .icon-focus:before,
.cid-s1dpQ3xIRz .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1dpQ3xIRz .icon-video {
  font-size: 1.5rem !important;
}
.cid-s1dpQ3xIRz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s1dpQ3xIRz ul {
  font-size: 0;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li:first-child,
.cid-s1dpQ3xIRz .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s1dpQ3xIRz .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s1dpQ3xIRz .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s1dpQ3xIRz .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN3548myu {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN3548myu .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN3548myu .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN3548myu .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN3548myu img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN3548myu .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN3548myu H1 {
  color: #767676;
}
.cid-vjN3548myu .mbr-text,
.cid-vjN3548myu .mbr-section-btn {
  color: #ff0e8c;
}
.cid-sg2UkwfbQ6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg2UkwfbQ6 .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-sg2UkwfbQ6 img {
    width: 90%;
  }
}
.cid-sg2UkwfbQ6 .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-sg2UkwfbQ6 .items {
  margin-bottom: 0;
}
.cid-sg2UkwfbQ6 .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-sg2UkwfbQ6 .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-sg2UkwfbQ6 .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-sg2UkwfbQ6 .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-sg2UkwfbQ6 .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sg2UkwfbQ6 .social-list {
    justify-content: center;
  }
}
.cid-sg2Ukwy5hB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sg2Ukwy5hB .container-fluid {
  padding: 0 3rem;
}
.cid-sg2Ukwy5hB .mbr-section-subtitle {
  color: #767676;
}
.cid-sg2Ukwy5hB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sg2Ukwy5hB .table-wrapper {
  margin: 0 auto;
}
.cid-sg2Ukwy5hB table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sg2Ukwy5hB table thead tr {
  border: none !important;
}
.cid-sg2Ukwy5hB table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-sg2Ukwy5hB table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-sg2Ukwy5hB table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-sg2Ukwy5hB tr:hover {
  background-color: #efefef !important;
}
.cid-sg2Ukwy5hB .head-item:after,
.cid-sg2Ukwy5hB .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-sg2Ukwy5hB table th,
  .cid-sg2Ukwy5hB table td {
    padding: .75rem;
  }
}
.cid-sg2Ukwy5hB .body-item {
  text-align: center;
  color: #000000;
}
.cid-sg2Ukwy5hB .head-item {
  color: #000000;
}
.cid-sg2Ukwy5hB .mbr-text {
  color: #767676;
}
.cid-sg2Ukwy5hB .mbr-section-title,
.cid-sg2Ukwy5hB .underline {
  text-align: center;
}
.cid-sg2Ukx7wvR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sg2Ukx7wvR .mbr-section-subtitle {
  color: #767676;
}
.cid-sg2Ukx7wvR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sg2Ukx7wvR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sg2Ukx7wvR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sg2Ukx7wvR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sg2Ukx7wvR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sg2Ukx7wvR .icon-focus,
.cid-sg2Ukx7wvR .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sg2Ukx7wvR .icon-focus:before,
.cid-sg2Ukx7wvR .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sg2Ukx7wvR .icon-video {
  font-size: 1.5rem !important;
}
.cid-sg2Ukx7wvR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sg2Ukx7wvR ul {
  font-size: 0;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li.active .btn.active:after,
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li:first-child,
.cid-sg2Ukx7wvR .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sg2Ukx7wvR .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-sg2Ukx7wvR .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sg2Ukx7wvR .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN2It2k55 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN2It2k55 .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN2It2k55 .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN2It2k55 .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN2It2k55 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN2It2k55 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN2It2k55 H1 {
  color: #767676;
}
.cid-vjN2It2k55 .mbr-text,
.cid-vjN2It2k55 .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0AfWvIulm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0AfWvIulm .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0AfWvIulm img {
    width: 90%;
  }
}
.cid-s0AfWvIulm .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0AfWvIulm .items {
  margin-bottom: 0;
}
.cid-s0AfWvIulm .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0AfWvIulm .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0AfWvIulm .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0AfWvIulm .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0AfWvIulm .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0AfWvIulm .social-list {
    justify-content: center;
  }
}
.cid-s0AeSozlpi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0AeSozlpi .container-fluid {
  padding: 0 3rem;
}
.cid-s0AeSozlpi .mbr-section-subtitle {
  color: #767676;
}
.cid-s0AeSozlpi .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0AeSozlpi .table-wrapper {
  margin: 0 auto;
}
.cid-s0AeSozlpi table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0AeSozlpi table thead tr {
  border: none !important;
}
.cid-s0AeSozlpi table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0AeSozlpi table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0AeSozlpi table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0AeSozlpi tr:hover {
  background-color: #efefef !important;
}
.cid-s0AeSozlpi .head-item:after,
.cid-s0AeSozlpi .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0AeSozlpi table th,
  .cid-s0AeSozlpi table td {
    padding: .75rem;
  }
}
.cid-s0AeSozlpi .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0AeSozlpi .head-item {
  color: #000000;
}
.cid-s0AeSozlpi .mbr-text {
  color: #767676;
}
.cid-s0AeSozlpi .mbr-section-title,
.cid-s0AeSozlpi .underline {
  text-align: center;
}
.cid-s0M9Hgnyn9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0M9Hgnyn9 .mbr-section-subtitle {
  color: #767676;
}
.cid-s0M9Hgnyn9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0M9Hgnyn9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0M9Hgnyn9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0M9Hgnyn9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0M9Hgnyn9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0M9Hgnyn9 .icon-focus,
.cid-s0M9Hgnyn9 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0M9Hgnyn9 .icon-focus:before,
.cid-s0M9Hgnyn9 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0M9Hgnyn9 .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0M9Hgnyn9 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0M9Hgnyn9 ul {
  font-size: 0;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li:first-child,
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0M9Hgnyn9 .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0M9Hgnyn9 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0M9Hgnyn9 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-sfSN8IX5Cy {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-sfSN8IX5Cy .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-sfSN8IX5Cy .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sfSN8IX5Cy .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sfSN8IX5Cy img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sfSN8IX5Cy .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sfSN8IX5Cy H1 {
  color: #767676;
}
.cid-sfSN8IX5Cy .mbr-text,
.cid-sfSN8IX5Cy .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0FZWAsxcj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0FZWAsxcj .mbr-section-title {
  letter-spacing: 0em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-s0FZWAsxcj .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-s0FZWAsxcj .btn {
  margin: 0px !important;
}
.cid-s0FZWAsxcj .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0FZWAsxcj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0FZWAsxcj .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-s0FZWAsxcj .carousel-item .wrap-img {
  text-align: center;
}
.cid-s0FZWAsxcj .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-s0FZWAsxcj .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-s0FZWAsxcj .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-s0FZWAsxcj .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-s0FZWAsxcj .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-s0FZWAsxcj .second-col {
    padding-top: 2rem;
  }
}
.cid-s0FZWAsxcj .mbr-section-subtitle,
.cid-s0FZWAsxcj .mbr-section-btn {
  color: #767676;
}
.cid-s1ddYsVRk8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1ddYsVRk8 .mbr-section-subtitle {
  color: #999999;
  font-weight: 700;
}
.cid-s1ddYsVRk8 .mbr-text {
  color: #777777;
  margin-top: 1.2rem;
}
.cid-s1ddYsVRk8 H3 {
  color: #ff41a4;
}
.cid-s1ddWPuVlv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s1ddWPuVlv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s1ddWPuVlv p {
  color: #767676;
  text-align: left;
}
.cid-s1ddWPuVlv .card-box {
  padding-top: 2rem;
}
.cid-s1ddWPuVlv .card-wrapper {
  height: 100%;
}
.cid-s1ddWPuVlv img {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.cid-s1ddWPuVlv P {
  text-align: center;
}
.cid-s1ddWPuVlv .card-title {
  text-align: center;
  color: #ff41a4;
}
.cid-s1ddWPuVlv .card-img {
  position: relative;
}
.cid-s1ddWPuVlv .card-icon {
  position: absolute;
  background: #ff41a4;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 1rem;
}
.cid-s1ddWPuVlv .card-icon .mbr-iconfont {
  font-size: 2rem;
  color: #ff0e8c;
}
.cid-s0FZYsbBES {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s0FZYsbBES .mbr-section-subtitle {
  color: #767676;
}
.cid-s0FZYsbBES .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0FZYsbBES .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0FZYsbBES .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0FZYsbBES .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0FZYsbBES .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0FZYsbBES .icon-focus,
.cid-s0FZYsbBES .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0FZYsbBES .icon-focus:before,
.cid-s0FZYsbBES .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0FZYsbBES .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0FZYsbBES .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0FZYsbBES ul {
  font-size: 0;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0FZYsbBES .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0FZYsbBES .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0FZYsbBES .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul li:first-child,
.cid-s0FZYsbBES .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0FZYsbBES .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0FZYsbBES .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0FZYsbBES .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-s0FZX7DDN0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0FZX7DDN0 .mbr-text {
  color: #767676;
}
.cid-s0FZX7DDN0 .mbr-section-subtitle {
  color: #767676;
}
.cid-s0FZX7DDN0 .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0FZX7DDN0 .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-s0FZX7DDN0 .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-s0FZX7DDN0 .card-text {
  padding-top: 2rem;
}
.cid-s0FZX7DDN0 .card-box {
  padding-bottom: 1rem;
}
.cid-s0FZX7DDN0 .num {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-s0FZX7DDN0 .num,
  .cid-s0FZX7DDN0 .card-title,
  .cid-s0FZX7DDN0 .mbr-text,
  .cid-s0FZX7DDN0 .mbr-title,
  .cid-s0FZX7DDN0 .mbr-section-subtitle,
  .cid-s0FZX7DDN0 .mbr-section-btn,
  .cid-s0FZX7DDN0 .mbr-section-title {
    text-align: center !important;
  }
  .cid-s0FZX7DDN0 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-s0FZX7DDN0 .card-title,
.cid-s0FZX7DDN0 .card-img {
  color: #ff41a4;
}
.cid-s1dgXMTTDa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ff41a4;
}
.cid-s1dgXMTTDa .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-s1dgXMTTDa .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-s1dgXMTTDa .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-s1dgXMTTDa .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-s1dgXMTTDa .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-s1dgXMTTDa .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-s1dgXMTTDa .inner-container {
    width: 100% !important;
  }
  .cid-s1dgXMTTDa .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN5wDk3zk {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN5wDk3zk .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN5wDk3zk .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN5wDk3zk .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN5wDk3zk img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN5wDk3zk .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN5wDk3zk H1 {
  color: #767676;
}
.cid-vjN5wDk3zk .mbr-text,
.cid-vjN5wDk3zk .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0ArYaQLwc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0ArYaQLwc .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0ArYaQLwc img {
    width: 90%;
  }
}
.cid-s0ArYaQLwc .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0ArYaQLwc .items {
  margin-bottom: 0;
}
.cid-s0ArYaQLwc .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0ArYaQLwc .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0ArYaQLwc .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0ArYaQLwc .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0ArYaQLwc .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0ArYaQLwc .social-list {
    justify-content: center;
  }
}
.cid-s0ArYbrAl6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0ArYbrAl6 .container-fluid {
  padding: 0 3rem;
}
.cid-s0ArYbrAl6 .mbr-section-subtitle {
  color: #767676;
}
.cid-s0ArYbrAl6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0ArYbrAl6 .table-wrapper {
  margin: 0 auto;
}
.cid-s0ArYbrAl6 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0ArYbrAl6 table thead tr {
  border: none !important;
}
.cid-s0ArYbrAl6 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0ArYbrAl6 table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0ArYbrAl6 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0ArYbrAl6 tr:hover {
  background-color: #efefef !important;
}
.cid-s0ArYbrAl6 .head-item:after,
.cid-s0ArYbrAl6 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0ArYbrAl6 table th,
  .cid-s0ArYbrAl6 table td {
    padding: .75rem;
  }
}
.cid-s0ArYbrAl6 .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0ArYbrAl6 .head-item {
  color: #000000;
}
.cid-s0ArYbrAl6 .mbr-text {
  color: #767676;
}
.cid-s0ArYbrAl6 .mbr-section-title,
.cid-s0ArYbrAl6 .underline {
  text-align: center;
}
.cid-s0MnC1nNl3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0MnC1nNl3 .mbr-section-subtitle {
  color: #767676;
}
.cid-s0MnC1nNl3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0MnC1nNl3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0MnC1nNl3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0MnC1nNl3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0MnC1nNl3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0MnC1nNl3 .icon-focus,
.cid-s0MnC1nNl3 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0MnC1nNl3 .icon-focus:before,
.cid-s0MnC1nNl3 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0MnC1nNl3 .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0MnC1nNl3 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0MnC1nNl3 ul {
  font-size: 0;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li:first-child,
.cid-s0MnC1nNl3 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0MnC1nNl3 .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0MnC1nNl3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0MnC1nNl3 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN5fqIve3 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN5fqIve3 .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN5fqIve3 .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN5fqIve3 .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN5fqIve3 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN5fqIve3 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN5fqIve3 H1 {
  color: #767676;
}
.cid-vjN5fqIve3 .mbr-text,
.cid-vjN5fqIve3 .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0ArlmWTgb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0ArlmWTgb .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0ArlmWTgb img {
    width: 90%;
  }
}
.cid-s0ArlmWTgb .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0ArlmWTgb .items {
  margin-bottom: 0;
}
.cid-s0ArlmWTgb .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0ArlmWTgb .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0ArlmWTgb .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0ArlmWTgb .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0ArlmWTgb .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0ArlmWTgb .social-list {
    justify-content: center;
  }
}
.cid-s0ArlnN3wb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0ArlnN3wb .container-fluid {
  padding: 0 3rem;
}
.cid-s0ArlnN3wb .mbr-section-subtitle {
  color: #767676;
}
.cid-s0ArlnN3wb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0ArlnN3wb .table-wrapper {
  margin: 0 auto;
}
.cid-s0ArlnN3wb table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0ArlnN3wb table thead tr {
  border: none !important;
}
.cid-s0ArlnN3wb table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0ArlnN3wb table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0ArlnN3wb table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0ArlnN3wb tr:hover {
  background-color: #efefef !important;
}
.cid-s0ArlnN3wb .head-item:after,
.cid-s0ArlnN3wb .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0ArlnN3wb table th,
  .cid-s0ArlnN3wb table td {
    padding: .75rem;
  }
}
.cid-s0ArlnN3wb .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0ArlnN3wb .head-item {
  color: #000000;
}
.cid-s0ArlnN3wb .mbr-text {
  color: #767676;
}
.cid-s0ArlnN3wb .mbr-section-title,
.cid-s0ArlnN3wb .underline {
  text-align: center;
}
.cid-s0MfOs4sVx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0MfOs4sVx .mbr-section-subtitle {
  color: #767676;
}
.cid-s0MfOs4sVx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0MfOs4sVx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0MfOs4sVx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0MfOs4sVx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0MfOs4sVx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0MfOs4sVx .icon-focus,
.cid-s0MfOs4sVx .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0MfOs4sVx .icon-focus:before,
.cid-s0MfOs4sVx .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0MfOs4sVx .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0MfOs4sVx .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0MfOs4sVx ul {
  font-size: 0;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0MfOs4sVx .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0MfOs4sVx .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0MfOs4sVx .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul li:first-child,
.cid-s0MfOs4sVx .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0MfOs4sVx .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0MfOs4sVx .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0MfOs4sVx .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN532Z6ay {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN532Z6ay .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN532Z6ay .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN532Z6ay .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN532Z6ay img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN532Z6ay .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN532Z6ay H1 {
  color: #767676;
}
.cid-vjN532Z6ay .mbr-text,
.cid-vjN532Z6ay .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0AqPRQMjm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0AqPRQMjm .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0AqPRQMjm img {
    width: 90%;
  }
}
.cid-s0AqPRQMjm .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0AqPRQMjm .items {
  margin-bottom: 0;
}
.cid-s0AqPRQMjm .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0AqPRQMjm .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0AqPRQMjm .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0AqPRQMjm .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0AqPRQMjm .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0AqPRQMjm .social-list {
    justify-content: center;
  }
}
.cid-s0AqPSK9Rt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0AqPSK9Rt .container-fluid {
  padding: 0 3rem;
}
.cid-s0AqPSK9Rt .mbr-section-subtitle {
  color: #767676;
}
.cid-s0AqPSK9Rt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0AqPSK9Rt .table-wrapper {
  margin: 0 auto;
}
.cid-s0AqPSK9Rt table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0AqPSK9Rt table thead tr {
  border: none !important;
}
.cid-s0AqPSK9Rt table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0AqPSK9Rt table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0AqPSK9Rt table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0AqPSK9Rt tr:hover {
  background-color: #efefef !important;
}
.cid-s0AqPSK9Rt .head-item:after,
.cid-s0AqPSK9Rt .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0AqPSK9Rt table th,
  .cid-s0AqPSK9Rt table td {
    padding: .75rem;
  }
}
.cid-s0AqPSK9Rt .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0AqPSK9Rt .head-item {
  color: #000000;
}
.cid-s0AqPSK9Rt .mbr-text {
  color: #767676;
}
.cid-s0AqPSK9Rt .mbr-section-title,
.cid-s0AqPSK9Rt .underline {
  text-align: center;
}
.cid-s0Mdvmhy1p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0Mdvmhy1p .mbr-section-subtitle {
  color: #767676;
}
.cid-s0Mdvmhy1p .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0Mdvmhy1p .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0Mdvmhy1p .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0Mdvmhy1p .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0Mdvmhy1p .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0Mdvmhy1p .icon-focus,
.cid-s0Mdvmhy1p .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0Mdvmhy1p .icon-focus:before,
.cid-s0Mdvmhy1p .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0Mdvmhy1p .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0Mdvmhy1p .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0Mdvmhy1p ul {
  font-size: 0;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li:first-child,
.cid-s0Mdvmhy1p .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0Mdvmhy1p .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0Mdvmhy1p .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0Mdvmhy1p .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN5pm9cW4 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN5pm9cW4 .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN5pm9cW4 .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN5pm9cW4 .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN5pm9cW4 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN5pm9cW4 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN5pm9cW4 H1 {
  color: #767676;
}
.cid-vjN5pm9cW4 .mbr-text,
.cid-vjN5pm9cW4 .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0ArOsiqcr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0ArOsiqcr .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0ArOsiqcr img {
    width: 90%;
  }
}
.cid-s0ArOsiqcr .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0ArOsiqcr .items {
  margin-bottom: 0;
}
.cid-s0ArOsiqcr .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0ArOsiqcr .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0ArOsiqcr .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0ArOsiqcr .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0ArOsiqcr .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0ArOsiqcr .social-list {
    justify-content: center;
  }
}
.cid-s0ArOt77eI {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0ArOt77eI .container-fluid {
  padding: 0 3rem;
}
.cid-s0ArOt77eI .mbr-section-subtitle {
  color: #767676;
}
.cid-s0ArOt77eI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0ArOt77eI .table-wrapper {
  margin: 0 auto;
}
.cid-s0ArOt77eI table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0ArOt77eI table thead tr {
  border: none !important;
}
.cid-s0ArOt77eI table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0ArOt77eI table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0ArOt77eI table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0ArOt77eI tr:hover {
  background-color: #efefef !important;
}
.cid-s0ArOt77eI .head-item:after,
.cid-s0ArOt77eI .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0ArOt77eI table th,
  .cid-s0ArOt77eI table td {
    padding: .75rem;
  }
}
.cid-s0ArOt77eI .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0ArOt77eI .head-item {
  color: #000000;
}
.cid-s0ArOt77eI .mbr-text {
  color: #767676;
}
.cid-s0ArOt77eI .mbr-section-title,
.cid-s0ArOt77eI .underline {
  text-align: center;
}
.cid-s0MnpQl0A1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0MnpQl0A1 .mbr-section-subtitle {
  color: #767676;
}
.cid-s0MnpQl0A1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0MnpQl0A1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0MnpQl0A1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0MnpQl0A1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0MnpQl0A1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0MnpQl0A1 .icon-focus,
.cid-s0MnpQl0A1 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0MnpQl0A1 .icon-focus:before,
.cid-s0MnpQl0A1 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0MnpQl0A1 .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0MnpQl0A1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0MnpQl0A1 ul {
  font-size: 0;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li:first-child,
.cid-s0MnpQl0A1 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0MnpQl0A1 .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0MnpQl0A1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0MnpQl0A1 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN3FFOlVY {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN3FFOlVY .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN3FFOlVY .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN3FFOlVY .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN3FFOlVY img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN3FFOlVY .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN3FFOlVY H1 {
  color: #767676;
}
.cid-vjN3FFOlVY .mbr-text,
.cid-vjN3FFOlVY .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s0ArdvgvZx {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0ArdvgvZx .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s0ArdvgvZx img {
    width: 90%;
  }
}
.cid-s0ArdvgvZx .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s0ArdvgvZx .items {
  margin-bottom: 0;
}
.cid-s0ArdvgvZx .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s0ArdvgvZx .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s0ArdvgvZx .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s0ArdvgvZx .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s0ArdvgvZx .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s0ArdvgvZx .social-list {
    justify-content: center;
  }
}
.cid-s0ArdvQWLl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0ArdvQWLl .container-fluid {
  padding: 0 3rem;
}
.cid-s0ArdvQWLl .mbr-section-subtitle {
  color: #767676;
}
.cid-s0ArdvQWLl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s0ArdvQWLl .table-wrapper {
  margin: 0 auto;
}
.cid-s0ArdvQWLl table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s0ArdvQWLl table thead tr {
  border: none !important;
}
.cid-s0ArdvQWLl table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s0ArdvQWLl table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s0ArdvQWLl table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s0ArdvQWLl tr:hover {
  background-color: #efefef !important;
}
.cid-s0ArdvQWLl .head-item:after,
.cid-s0ArdvQWLl .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s0ArdvQWLl table th,
  .cid-s0ArdvQWLl table td {
    padding: .75rem;
  }
}
.cid-s0ArdvQWLl .body-item {
  text-align: center;
  color: #000000;
}
.cid-s0ArdvQWLl .head-item {
  color: #000000;
}
.cid-s0ArdvQWLl .mbr-text {
  color: #767676;
}
.cid-s0ArdvQWLl .mbr-section-title,
.cid-s0ArdvQWLl .underline {
  text-align: center;
}
.cid-s0MenypUzs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s0MenypUzs .mbr-section-subtitle {
  color: #767676;
}
.cid-s0MenypUzs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s0MenypUzs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s0MenypUzs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s0MenypUzs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s0MenypUzs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s0MenypUzs .icon-focus,
.cid-s0MenypUzs .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s0MenypUzs .icon-focus:before,
.cid-s0MenypUzs .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0MenypUzs .icon-video {
  font-size: 1.5rem !important;
}
.cid-s0MenypUzs .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s0MenypUzs ul {
  font-size: 0;
}
.cid-s0MenypUzs .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s0MenypUzs .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s0MenypUzs .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s0MenypUzs .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s0MenypUzs .mbr-gallery-filter ul li:first-child,
.cid-s0MenypUzs .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s0MenypUzs .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s0MenypUzs .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s0MenypUzs .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjN6F1V0GW {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjN6F1V0GW .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjN6F1V0GW .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjN6F1V0GW .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjN6F1V0GW img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjN6F1V0GW .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjN6F1V0GW H1 {
  color: #767676;
}
.cid-vjN6F1V0GW .mbr-text,
.cid-vjN6F1V0GW .mbr-section-btn {
  color: #ff0e8c;
}
.cid-s1dt5ZkFEw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1dt5ZkFEw .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-s1dt5ZkFEw img {
    width: 90%;
  }
}
.cid-s1dt5ZkFEw .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-s1dt5ZkFEw .items {
  margin-bottom: 0;
}
.cid-s1dt5ZkFEw .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-s1dt5ZkFEw .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-s1dt5ZkFEw .soc-item:hover span {
  color: #ff0e8c !important;
}
.cid-s1dt5ZkFEw .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-s1dt5ZkFEw .card-img {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s1dt5ZkFEw .social-list {
    justify-content: center;
  }
}
.cid-s1dt604zlH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dt604zlH .container-fluid {
  padding: 0 3rem;
}
.cid-s1dt604zlH .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dt604zlH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s1dt604zlH .table-wrapper {
  margin: 0 auto;
}
.cid-s1dt604zlH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s1dt604zlH table thead tr {
  border: none !important;
}
.cid-s1dt604zlH table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-s1dt604zlH table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-s1dt604zlH table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-s1dt604zlH tr:hover {
  background-color: #efefef !important;
}
.cid-s1dt604zlH .head-item:after,
.cid-s1dt604zlH .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-s1dt604zlH table th,
  .cid-s1dt604zlH table td {
    padding: .75rem;
  }
}
.cid-s1dt604zlH .body-item {
  text-align: center;
  color: #000000;
}
.cid-s1dt604zlH .head-item {
  color: #000000;
}
.cid-s1dt604zlH .mbr-text {
  color: #767676;
}
.cid-s1dt604zlH .mbr-section-title,
.cid-s1dt604zlH .underline {
  text-align: center;
}
.cid-s1dt61Mnj0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s1dt61Mnj0 .mbr-section-subtitle {
  color: #767676;
}
.cid-s1dt61Mnj0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s1dt61Mnj0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s1dt61Mnj0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s1dt61Mnj0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s1dt61Mnj0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff41a4;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s1dt61Mnj0 .icon-focus,
.cid-s1dt61Mnj0 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s1dt61Mnj0 .icon-focus:before,
.cid-s1dt61Mnj0 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1dt61Mnj0 .icon-video {
  font-size: 1.5rem !important;
}
.cid-s1dt61Mnj0 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-s1dt61Mnj0 ul {
  font-size: 0;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ff41a4 !important;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li.active .btn:not(.active):after,
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li.active .btn.active:after,
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li:not(.active) .btn.active:after {
  border-color: #ff41a4;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li:first-child,
.cid-s1dt61Mnj0 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s1dt61Mnj0 .mbr-gallery-filter ul .mbr-gallery-filter-all .btn:after {
  opacity: 1;
  border-color: #ff41a4;
}
.cid-s1dt61Mnj0 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s1dt61Mnj0 .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-sg3vNpGuzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sg3vNpGuzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sg3vNpGuzv .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-sg3vNpGuzv .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sg3vNpGuzv .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-sg3vNpGuzv .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-link:focus,
.cid-sg3vNpGuzv .nav-link:active,
.cid-sg3vNpGuzv .nav-link:focus-visible,
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-sg3vNpGuzv .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-sg3vNpGuzv .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-sg3vNpGuzv .nav-link:hover::after {
  width: 85%;
}
.cid-sg3vNpGuzv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .nav-item,
.cid-sg3vNpGuzv .nav-link,
.cid-sg3vNpGuzv .navbar-caption {
  font-weight: normal;
}
.cid-sg3vNpGuzv .nav-item:focus,
.cid-sg3vNpGuzv .nav-link:focus {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sg3vNpGuzv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sg3vNpGuzv .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-sg3vNpGuzv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-sg3vNpGuzv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sg3vNpGuzv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::before,
.cid-sg3vNpGuzv .navbar.collapsed .nav-item .nav-link::after,
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-sg3vNpGuzv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sg3vNpGuzv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sg3vNpGuzv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sg3vNpGuzv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg3vNpGuzv .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sg3vNpGuzv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sg3vNpGuzv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sg3vNpGuzv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sg3vNpGuzv .dropdown-item.active,
.cid-sg3vNpGuzv .dropdown-item:active {
  background-color: transparent;
}
.cid-sg3vNpGuzv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sg3vNpGuzv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sg3vNpGuzv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sg3vNpGuzv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sg3vNpGuzv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sg3vNpGuzv .navbar-buttons {
  text-align: center;
}
.cid-sg3vNpGuzv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sg3vNpGuzv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sg3vNpGuzv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sg3vNpGuzv .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-sg3vNpGuzv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sg3vNpGuzv .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sg3vNpGuzv .soc-item {
  margin: .5rem .3rem;
}
.cid-sg3vNpGuzv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-sg3vNpGuzv a.nav-link .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sg3vNpGuzv a.nav-link:hover .mbr-iconfont-btn,
.cid-sg3vNpGuzv a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sg3vNpGuzv a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-sg3vNpGuzv .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-sg3vNpGuzv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sg3vNpGuzv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sg3vNpGuzv ul.navbar-nav li {
    margin: auto;
  }
  .cid-sg3vNpGuzv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sg3vNpGuzv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sg3vNpGuzv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-sg3vNpGuzv .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-sfSP2zpVpz {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/arteflyer-madrid-2000x400.webp");
  background-position: right;
}
.cid-sfSP2zpVpz .wrapper {
  position: relative;
  border-top: 3px solid #ff0e8c;
  border-right: 3px solid #ff0e8c;
  border-left: 3px solid #ff0e8c;
  padding: 2.5rem 2.5rem;
}
.cid-sfSP2zpVpz .wrapper:before {
  content: "";
  background: #ff0e8c;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sfSP2zpVpz .wrapper:after {
  content: "";
  background: #ff0e8c;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sfSP2zpVpz img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sfSP2zpVpz .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sfSP2zpVpz H1 {
  color: #767676;
}
.cid-sfSP2zpVpz .mbr-text,
.cid-sfSP2zpVpz .mbr-section-btn {
  color: #ff0e8c;
}
.cid-vjq23b3xFV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vjq23b3xFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjq23b3xFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjq23b3xFV .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .container {
    padding: 0 16px;
  }
}
.cid-vjq23b3xFV .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .row {
    margin: 0 10px;
  }
}
.cid-vjq23b3xFV .row .card {
  position: relative;
  padding: 0;
}
.cid-vjq23b3xFV .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ff0e8c;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-vjq23b3xFV .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .row .card .decor-wrapper {
    display: none;
  }
}
.cid-vjq23b3xFV .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #ff0e8c;
  border-radius: 100%;
  border: 5px solid #ff0e8c;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-vjq23b3xFV .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .row .card .icon-decor {
    display: none;
  }
}
.cid-vjq23b3xFV .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .title-wrapper {
    width: 100%;
  }
}
.cid-vjq23b3xFV .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vjq23b3xFV .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjq23b3xFV .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vjq23b3xFV .mbr-section-title {
  color: #ff0e8c;
}
.cid-vjq23b3xFV .mbr-text {
  color: #767676;
}
.cid-vjq24moIU9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vjq24moIU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjq24moIU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjq24moIU9 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .container {
    padding: 0 16px;
  }
}
.cid-vjq24moIU9 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .row {
    margin: 0 10px;
  }
}
.cid-vjq24moIU9 .row .card {
  position: relative;
  padding: 0;
}
.cid-vjq24moIU9 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ff0e8c;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-vjq24moIU9 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-vjq24moIU9 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #ff0e8c;
  border-radius: 100%;
  border: 5px solid #ff0e8c;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-vjq24moIU9 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .row .card .icon-decor {
    display: none;
  }
}
.cid-vjq24moIU9 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .title-wrapper {
    width: 100%;
  }
}
.cid-vjq24moIU9 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vjq24moIU9 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjq24moIU9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vjq24moIU9 .mbr-section-title {
  color: #ff0e8c;
}
.cid-vjq24moIU9 .mbr-text {
  color: #767676;
}
.cid-vjq25IGINw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vjq25IGINw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjq25IGINw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjq25IGINw .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .container {
    padding: 0 16px;
  }
}
.cid-vjq25IGINw .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .row {
    margin: 0 10px;
  }
}
.cid-vjq25IGINw .row .card {
  position: relative;
  padding: 0;
}
.cid-vjq25IGINw .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #ff0e8c;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-vjq25IGINw .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .row .card .decor-wrapper {
    display: none;
  }
}
.cid-vjq25IGINw .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #ff0e8c;
  border-radius: 100%;
  border: 5px solid #ff0e8c;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-vjq25IGINw .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .row .card .icon-decor {
    display: none;
  }
}
.cid-vjq25IGINw .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .title-wrapper {
    width: 100%;
  }
}
.cid-vjq25IGINw .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vjq25IGINw .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjq25IGINw .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vjq25IGINw .mbr-section-title {
  color: #ff0e8c;
}
.cid-vjq25IGINw .mbr-text {
  color: #767676;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-vjNaC2nfGq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vjNaC2nfGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNaC2nfGq .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjNaC2nfGq .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjNaC2nfGq .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vjNaC2nfGq .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaC2nfGq .nav-link:focus,
.cid-vjNaC2nfGq .nav-link:active,
.cid-vjNaC2nfGq .nav-link:focus-visible,
.cid-vjNaC2nfGq .nav-item:focus,
.cid-vjNaC2nfGq .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-vjNaC2nfGq .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-vjNaC2nfGq .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-vjNaC2nfGq .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaC2nfGq .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-vjNaC2nfGq .nav-link:hover::after {
  width: 85%;
}
.cid-vjNaC2nfGq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNaC2nfGq .nav-item,
.cid-vjNaC2nfGq .nav-link,
.cid-vjNaC2nfGq .navbar-caption {
  font-weight: normal;
}
.cid-vjNaC2nfGq .nav-item:focus,
.cid-vjNaC2nfGq .nav-link:focus {
  outline: none;
}
.cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNaC2nfGq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjNaC2nfGq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjNaC2nfGq .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-vjNaC2nfGq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-vjNaC2nfGq .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-vjNaC2nfGq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjNaC2nfGq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjNaC2nfGq .navbar.collapsed .nav-item .nav-link::before,
.cid-vjNaC2nfGq .navbar.collapsed .nav-item .nav-link::after,
.cid-vjNaC2nfGq .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-vjNaC2nfGq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vjNaC2nfGq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjNaC2nfGq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjNaC2nfGq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjNaC2nfGq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjNaC2nfGq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjNaC2nfGq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjNaC2nfGq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-vjNaC2nfGq .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-vjNaC2nfGq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjNaC2nfGq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjNaC2nfGq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjNaC2nfGq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjNaC2nfGq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjNaC2nfGq .dropdown-item.active,
.cid-vjNaC2nfGq .dropdown-item:active {
  background-color: transparent;
}
.cid-vjNaC2nfGq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjNaC2nfGq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjNaC2nfGq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjNaC2nfGq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-vjNaC2nfGq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjNaC2nfGq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjNaC2nfGq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjNaC2nfGq .navbar-buttons {
  text-align: center;
}
.cid-vjNaC2nfGq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vjNaC2nfGq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-vjNaC2nfGq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjNaC2nfGq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNaC2nfGq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNaC2nfGq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjNaC2nfGq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNaC2nfGq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjNaC2nfGq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjNaC2nfGq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNaC2nfGq .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-vjNaC2nfGq a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-vjNaC2nfGq .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-vjNaC2nfGq .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-vjNaC2nfGq .soc-item {
  margin: .5rem .3rem;
}
.cid-vjNaC2nfGq .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-vjNaC2nfGq a.nav-link .mbr-iconfont-btn,
.cid-vjNaC2nfGq a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-vjNaC2nfGq a.nav-link:hover .mbr-iconfont-btn,
.cid-vjNaC2nfGq a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-vjNaC2nfGq a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-vjNaC2nfGq .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-vjNaC2nfGq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjNaC2nfGq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjNaC2nfGq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjNaC2nfGq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjNaC2nfGq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjNaC2nfGq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjNaC2nfGq ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjNaC2nfGq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjNaC2nfGq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-vjNaC2nfGq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjNaC2nfGq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-vjNaC2nfGq .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjNaC2SAjD {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjNaC2SAjD .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjNaC2SAjD .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjNaC2SAjD .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjNaC2SAjD img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjNaC2SAjD .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjNaC2SAjD H1 {
  color: #767676;
}
.cid-vjNaC2SAjD .mbr-text,
.cid-vjNaC2SAjD .mbr-section-btn {
  color: #ff0e8c;
}
.cid-vjNeYZZmG7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-vjNeYZZmG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNeYZZmG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNeYZZmG7 .title-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vjNeYZZmG7 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vjNeYZZmG7 .title-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  margin-bottom: 24px;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #ff0e8c 0%, #ff0e8c 50%, #ff0e8c 100%);
}
.cid-vjNeYZZmG7 .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vjNeYZZmG7 .title-wrapper .title-wrap .mbr-section-title {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-vjNeYZZmG7 .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vjNeYZZmG7 .content-wrap {
  margin: 0 -10px;
}
.cid-vjNeYZZmG7 .content-wrap .card {
  padding: 0 10px;
}
.cid-vjNeYZZmG7 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .cid-vjNeYZZmG7 .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vjNeYZZmG7 .items-wrapper .item:hover .item-wrapper .item-title,
.cid-vjNeYZZmG7 .items-wrapper .item:focus .item-wrapper .item-title {
  color: #ff0e8c;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper {
  height: 100%;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 20px -8px #e9e9e9;
}
@media (max-width: 992px) {
  .cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper {
    padding: 30px 20px;
  }
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 24px;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .iconfont-wrapper .iconfont-wrap {
  display: inline-flex;
  background: transparent !important;
  padding: 0 !important;
  background-image: none !important;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .iconfont-wrapper .iconfont-wrap .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  padding: 0 !important;
  background-color: #f0f0f2 !important;
  border-radius: 50% !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .iconfont-wrapper .iconfont-wrap .icon-wrap .mbr-iconfont {
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #ff0e8c 0%, #ff0e8c 50%, #ff0e8c 100%) !important;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .item-title {
  transition: all .3s ease;
  margin-bottom: 16px;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vjNeYZZmG7 .items-wrapper .item .item-wrapper .item-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
.cid-vjNeYZZmG7 .card-wrapper {
  padding: 30px;
  background-color: #171719;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vjNeYZZmG7 .card-wrapper {
    padding: 30px 20px;
    margin-top: 20px;
  }
}
.cid-vjNeYZZmG7 .card-wrapper .desc-wrapper {
  margin-bottom: 20px;
}
.cid-vjNeYZZmG7 .card-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-vjNeYZZmG7 .card-wrapper .desc-wrapper .main-btn {
  margin-top: 20px;
}
.cid-vjNeYZZmG7 .card-wrapper .image-wrapper {
  min-height: 290px;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vjNeYZZmG7 .card-wrapper .image-wrapper {
    min-height: auto;
    height: 300px;
  }
}
.cid-vjNeYZZmG7 .card-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 12px 26px;
  border: none !important;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ff0e8c 0%, #ff0e8c 50%, #ff0e8c 100%);
  opacity: 0;
  transition: all .5s ease;
  z-index: -1;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white:hover,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white:focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white.focus,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black.active,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white.active {
  background-color: transparent !important;
  color: #ffffff !important;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white:hover::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white:focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white.focus::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black.active::before,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white.active::before {
  opacity: 1;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black-outline,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black-outline .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white-outline .mbr-iconfont {
  transform: rotate(-45deg);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #ff0e8c 0%, #ff0e8c 50%, #ff0e8c 100%) !important;
}
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white-outline:hover .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white-outline:focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white-outline.focus .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-primary-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-secondary-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-success-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-info-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-warning-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-danger-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-black-outline.active .mbr-iconfont,
.cid-vjNeYZZmG7 .mbr-section-btn .btn-white-outline.active .mbr-iconfont {
  transform: rotate(0);
}
.cid-vjNeYZZmG7 .mbr-label,
.cid-vjNeYZZmG7 .label-wrapper {
  color: #171719;
  text-align: center;
}
.cid-vjNeYZZmG7 .mbr-section-title,
.cid-vjNeYZZmG7 .title-wrap {
  color: #171719;
  text-align: center;
}
.cid-vjNeYZZmG7 .mbr-desc {
  color: #ffffff;
}
.cid-vjNeYZZmG7 .item-title {
  color: #171719;
}
.cid-vjNeYZZmG7 .item-text {
  color: #565661;
}
.cid-vjNlXJW6e2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-vjNlXJW6e2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNlXJW6e2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNlXJW6e2 .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vjNlXJW6e2 .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-vjNlXJW6e2 .label-wrapper {
  margin-bottom: 12px;
}
.cid-vjNlXJW6e2 .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vjNlXJW6e2 .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ff0e8c;
}
.cid-vjNlXJW6e2 .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vjNlXJW6e2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjNlXJW6e2 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjNlXJW6e2 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vjNlXJW6e2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 600px;
  max-width: 600px;
}
@media (max-width: 1200px) {
  .cid-vjNlXJW6e2 .embla__slide {
    min-width: 475px;
    max-width: 475px;
  }
}
@media (max-width: 768px) {
  .cid-vjNlXJW6e2 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vjNlXJW6e2 .embla__slide .slide-content {
  width: 100%;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-vjNlXJW6e2 .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper {
  background-color: #ffffff;
  padding: 12px 8px;
  height: 100%;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .decor-wrapper {
  display: flex;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  gap: 4px;
  padding: 0 4px;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .item-decor {
  display: inline-flex;
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .decor_1 {
  background-color: #009bdb;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .decor_2 {
  background-color: #ff0e8c;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .decor_3 {
  background-color: #fac769;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  margin: 12px 0;
}
@media (max-width: 992px) {
  .cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .item-img {
    margin: 8px 0 12px;
  }
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 12px;
}
@media (max-width: 992px) {
  .cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .card-box {
    padding: 8px 12px 8px;
  }
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .card-box .item-text {
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-vjNlXJW6e2 .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vjNlXJW6e2 .embla__button--next,
.cid-vjNlXJW6e2 .embla__button--prev {
  display: flex;
}
.cid-vjNlXJW6e2 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #ff0e8c !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vjNlXJW6e2 .embla__button:hover {
  background-color: #e6e6e6 !important;
  color: #707070 !important;
}
.cid-vjNlXJW6e2 .embla__button:disabled {
  opacity: .5 !important;
  background-color: #ff0e8c !important;
  color: #ffffff !important;
}
.cid-vjNlXJW6e2 .embla__button.embla__button--prev {
  left: 0;
}
.cid-vjNlXJW6e2 .embla__button.embla__button--next {
  left: 50px;
}
.cid-vjNlXJW6e2 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-vjNlXJW6e2 .embla {
    padding-bottom: 4rem;
  }
}
.cid-vjNlXJW6e2 .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vjNlXJW6e2 .embla__viewport {
    padding: 0;
  }
}
.cid-vjNlXJW6e2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vjNlXJW6e2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vjNlXJW6e2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vjNlXJW6e2 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vjNlXJW6e2 .mbr-label {
  color: #707070;
}
.cid-vjNlXJW6e2 .mbr-section-title {
  color: #000000;
}
.cid-vjNlXJW6e2 .mbr-text {
  color: #707070;
}
.cid-vjNlXJW6e2 .item-title {
  color: #000000;
}
.cid-vjNlXJW6e2 .item-date {
  color: #707070;
}
.cid-vjNlXJW6e2 .item-text {
  color: #000000;
}
.cid-vjNBQzrETc {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vjNBQzrETc .mbr-text,
.cid-vjNBQzrETc .mbr-section-subtitle {
  color: #767676;
}
.cid-vjNBQzrETc .card-title {
  color: #66458e;
}
.cid-vjNBQzrETc .card .card-img span {
  color: #ff0e8c;
  font-size: 60px;
  background: linear-gradient(45deg, #ff0e8c, #ff0e8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-vjNBQzrETc .mbr-section-subtitle,
  .cid-vjNBQzrETc .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vjNBQzrETc .card .card-img span {
    background: none;
  }
}
.cid-vjNBQzrETc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNBQzrETc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNBQzrETc .card-title,
.cid-vjNBQzrETc .card-img {
  color: #ff0e8c;
}
.cid-vjNLOZUcbC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vjNLOZUcbC .container-fluid {
  padding: 0 3rem;
}
.cid-vjNLOZUcbC .mbr-section-subtitle {
  color: #767676;
}
.cid-vjNLOZUcbC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vjNLOZUcbC .table-wrapper {
  margin: 0 auto;
}
.cid-vjNLOZUcbC table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vjNLOZUcbC table thead tr {
  border: none !important;
}
.cid-vjNLOZUcbC table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
}
.cid-vjNLOZUcbC table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-vjNLOZUcbC table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-vjNLOZUcbC tr:hover {
  background-color: #efefef !important;
}
.cid-vjNLOZUcbC .head-item:after,
.cid-vjNLOZUcbC .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-vjNLOZUcbC table th,
  .cid-vjNLOZUcbC table td {
    padding: .75rem;
  }
}
.cid-vjNLOZUcbC .body-item {
  text-align: center;
}
.cid-vjNLOZUcbC .head-item {
  color: #ff0e8c;
}
.cid-vjNLOZUcbC .mbr-text {
  color: #767676;
}
.cid-vjNLOZUcbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjNLOZUcbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNLOZUcbC .mbr-section-title,
.cid-vjNLOZUcbC .underline {
  color: #ff0e8c;
}
.cid-vjNGuUfVjW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vjNGuUfVjW h3,
.cid-vjNGuUfVjW h4,
.cid-vjNGuUfVjW h5,
.cid-vjNGuUfVjW h6,
.cid-vjNGuUfVjW p {
  margin: 0;
}
.cid-vjNGuUfVjW .section-head {
  margin-bottom: 2.5rem;
}
.cid-vjNGuUfVjW .mbr-section-subtitle {
  margin-top: 0.5rem;
}
.cid-vjNGuUfVjW .nav-tabs .nav-item.open .nav-link:focus,
.cid-vjNGuUfVjW .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-vjNGuUfVjW .nav-tabs {
  flex-wrap: nowrap;
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 2.3rem;
}
.cid-vjNGuUfVjW .nav-item {
  width: 100%;
  text-align: center;
}
.cid-vjNGuUfVjW .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}
.cid-vjNGuUfVjW .nav-tabs .nav-link:not(.active) {
  color: #c1c1c1;
}
.cid-vjNGuUfVjW .nav-link,
.cid-vjNGuUfVjW .nav-link.active {
  padding: 0 10px 18px;
  background-color: transparent;
}
.cid-vjNGuUfVjW .nav-tabs .nav-link.active {
  color: #ff0081;
  border-bottom: 1px solid #ff0081;
}
.cid-vjNGuUfVjW .tab-tile {
  background-color: #efefef;
  border-radius: 25px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 385px;
}
@media (max-width: 1199px) {
  .cid-vjNGuUfVjW .tab-tile {
    margin-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-vjNGuUfVjW .tab-tile {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.cid-vjNGuUfVjW .tab-title {
  margin-bottom: 25px;
}
.cid-vjNGuUfVjW .tab-subtitle {
  color: #ff0081;
}
.cid-vjNGuUfVjW .add-section {
  margin-top: 3rem;
}
@media (max-width: 959px) {
  .cid-vjNGuUfVjW .add-section {
    margin-top: 2rem;
  }
}
@media (max-width: 417px) {
  .cid-vjNGuUfVjW .add-section {
    text-align: center;
  }
}
.cid-vjNGuUfVjW .add-section-head {
  display: flex;
}
@media (max-width: 767px) {
  .cid-vjNGuUfVjW .add-section-head {
    flex-direction: column;
  }
}
.cid-vjNGuUfVjW .mbr-iconfont {
  color: #33d5ad;
  margin-right: 1rem;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .cid-vjNGuUfVjW .mbr-iconfont {
    margin-right: 0;
    margin-bottom: 0.5px;
  }
}
.cid-vjNGuUfVjW .mbr-text {
  margin-top: 25px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-vjNGuUfVjW .col-lg-4 {
    width: 41%;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .cid-vjNGuUfVjW .col-md-6 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .cid-vjNGuUfVjW .col-md-7 {
    width: 80%;
  }
}
.cid-vjNGuUfVjW .left {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 2rem);
}
.cid-vjNGuUfVjW .left .list-left {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1rem;
}
.cid-vjNGuUfVjW .left .list-left li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-vjNGuUfVjW .left {
    align-items: center;
    text-align: center;
  }
}
.cid-vjNGuUfVjW .cards-row {
  display: flex;
  justify-content: center;
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}
.cid-vjNGuUfVjW .card-item {
  width: 52px;
  height: 35px;
  margin-right: 1rem;
}
.cid-vjNGuUfVjW .card-item:last-child {
  margin-right: 0;
}
.cid-vjNGuUfVjW .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-vjNGuUfVjW .mbr-section-title-left {
  margin-bottom: 2.3rem;
  color: #767676;
}
.cid-vjNGuUfVjW .mbr-section-title-right {
  margin-bottom: 2.3rem;
  color: #767676;
}
.cid-vjNGuUfVjW .right {
  margin-top: 2rem;
}
.cid-vjNGuUfVjW .right .list-right {
  list-style-type: none;
  padding-left: 0;
}
.cid-vjNGuUfVjW .right .list-right li {
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .cid-vjNGuUfVjW .right {
    text-align: center;
  }
}
.cid-vjNGuUfVjW .list-right {
  color: #bbbbbb;
}
.cid-vjNGuUfVjW .list-left {
  color: #bbbbbb;
}
.cid-vjNH3lfDWJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vjNH3lfDWJ a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-vjNH3lfDWJ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-vjNH3lfDWJ .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjNH3lfDWJ .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-vjNH3lfDWJ .form-control {
  background: none;
  border-radius: 0px;
}
.cid-vjNH3lfDWJ textarea.form-control {
  min-height: 214.5px;
}
.cid-vjNH3lfDWJ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-vjNH3lfDWJ h4,
.cid-vjNH3lfDWJ p {
  margin: 0;
}
.cid-vjNH3lfDWJ h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-vjNH3lfDWJ h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-vjNH3lfDWJ .icon {
  color: #ff2600;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vjNH3lfDWJ h2 {
    text-align: center;
  }
  .cid-vjNH3lfDWJ h3 {
    text-align: center;
  }
  .cid-vjNH3lfDWJ .input-group-btn {
    text-align: center;
  }
  .cid-vjNH3lfDWJ .social-list {
    text-align: center;
  }
  .cid-vjNH3lfDWJ .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-vjNH3lfDWJ H2 {
  color: #656565;
}
.cid-vjNH3lfDWJ .content {
  text-align: left;
  color: #656565;
}
.cid-vjNH3lfDWJ .type {
  text-align: left;
  padding-bottom: 8px;
  color: #232323;
}
.cid-vjNH3lfDWJ .title1 {
  text-align: left;
  color: #ff0e8c;
}
.cid-vjNH3lfDWJ .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-vjNH3lfDWJ .title2 {
  color: #ff0e8c;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-vjNaLWrI4G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vjNaLWrI4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNaLWrI4G .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjNaLWrI4G .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjNaLWrI4G .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vjNaLWrI4G .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaLWrI4G .nav-link:focus,
.cid-vjNaLWrI4G .nav-link:active,
.cid-vjNaLWrI4G .nav-link:focus-visible,
.cid-vjNaLWrI4G .nav-item:focus,
.cid-vjNaLWrI4G .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-vjNaLWrI4G .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-vjNaLWrI4G .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-vjNaLWrI4G .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaLWrI4G .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-vjNaLWrI4G .nav-link:hover::after {
  width: 85%;
}
.cid-vjNaLWrI4G .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNaLWrI4G .nav-item,
.cid-vjNaLWrI4G .nav-link,
.cid-vjNaLWrI4G .navbar-caption {
  font-weight: normal;
}
.cid-vjNaLWrI4G .nav-item:focus,
.cid-vjNaLWrI4G .nav-link:focus {
  outline: none;
}
.cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNaLWrI4G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjNaLWrI4G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjNaLWrI4G .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-vjNaLWrI4G .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-vjNaLWrI4G .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-vjNaLWrI4G .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjNaLWrI4G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjNaLWrI4G .navbar.collapsed .nav-item .nav-link::before,
.cid-vjNaLWrI4G .navbar.collapsed .nav-item .nav-link::after,
.cid-vjNaLWrI4G .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-vjNaLWrI4G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vjNaLWrI4G .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjNaLWrI4G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjNaLWrI4G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjNaLWrI4G .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjNaLWrI4G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjNaLWrI4G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjNaLWrI4G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-vjNaLWrI4G .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-vjNaLWrI4G .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjNaLWrI4G .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjNaLWrI4G .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjNaLWrI4G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjNaLWrI4G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjNaLWrI4G .dropdown-item.active,
.cid-vjNaLWrI4G .dropdown-item:active {
  background-color: transparent;
}
.cid-vjNaLWrI4G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjNaLWrI4G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjNaLWrI4G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjNaLWrI4G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-vjNaLWrI4G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjNaLWrI4G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjNaLWrI4G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjNaLWrI4G .navbar-buttons {
  text-align: center;
}
.cid-vjNaLWrI4G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vjNaLWrI4G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-vjNaLWrI4G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjNaLWrI4G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNaLWrI4G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNaLWrI4G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjNaLWrI4G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNaLWrI4G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjNaLWrI4G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjNaLWrI4G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNaLWrI4G .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-vjNaLWrI4G a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-vjNaLWrI4G .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-vjNaLWrI4G .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-vjNaLWrI4G .soc-item {
  margin: .5rem .3rem;
}
.cid-vjNaLWrI4G .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-vjNaLWrI4G a.nav-link .mbr-iconfont-btn,
.cid-vjNaLWrI4G a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-vjNaLWrI4G a.nav-link:hover .mbr-iconfont-btn,
.cid-vjNaLWrI4G a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-vjNaLWrI4G a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-vjNaLWrI4G .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-vjNaLWrI4G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjNaLWrI4G .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjNaLWrI4G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjNaLWrI4G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjNaLWrI4G .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjNaLWrI4G .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjNaLWrI4G ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjNaLWrI4G .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjNaLWrI4G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-vjNaLWrI4G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjNaLWrI4G .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-vjNaLWrI4G .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjNaLWWQBh {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjNaLWWQBh .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjNaLWWQBh .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjNaLWWQBh .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjNaLWWQBh img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjNaLWWQBh .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjNaLWWQBh H1 {
  color: #767676;
}
.cid-vjNaLWWQBh .mbr-text,
.cid-vjNaLWWQBh .mbr-section-btn {
  color: #ff0e8c;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-vjNaR3jCWB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vjNaR3jCWB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNaR3jCWB .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjNaR3jCWB .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjNaR3jCWB .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vjNaR3jCWB .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaR3jCWB .nav-link:focus,
.cid-vjNaR3jCWB .nav-link:active,
.cid-vjNaR3jCWB .nav-link:focus-visible,
.cid-vjNaR3jCWB .nav-item:focus,
.cid-vjNaR3jCWB .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-vjNaR3jCWB .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-vjNaR3jCWB .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-vjNaR3jCWB .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaR3jCWB .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-vjNaR3jCWB .nav-link:hover::after {
  width: 85%;
}
.cid-vjNaR3jCWB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNaR3jCWB .nav-item,
.cid-vjNaR3jCWB .nav-link,
.cid-vjNaR3jCWB .navbar-caption {
  font-weight: normal;
}
.cid-vjNaR3jCWB .nav-item:focus,
.cid-vjNaR3jCWB .nav-link:focus {
  outline: none;
}
.cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNaR3jCWB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjNaR3jCWB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjNaR3jCWB .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-vjNaR3jCWB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-vjNaR3jCWB .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-vjNaR3jCWB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjNaR3jCWB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjNaR3jCWB .navbar.collapsed .nav-item .nav-link::before,
.cid-vjNaR3jCWB .navbar.collapsed .nav-item .nav-link::after,
.cid-vjNaR3jCWB .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-vjNaR3jCWB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vjNaR3jCWB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjNaR3jCWB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjNaR3jCWB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjNaR3jCWB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjNaR3jCWB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjNaR3jCWB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjNaR3jCWB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-vjNaR3jCWB .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-vjNaR3jCWB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjNaR3jCWB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjNaR3jCWB .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjNaR3jCWB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjNaR3jCWB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjNaR3jCWB .dropdown-item.active,
.cid-vjNaR3jCWB .dropdown-item:active {
  background-color: transparent;
}
.cid-vjNaR3jCWB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjNaR3jCWB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjNaR3jCWB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjNaR3jCWB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-vjNaR3jCWB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjNaR3jCWB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjNaR3jCWB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjNaR3jCWB .navbar-buttons {
  text-align: center;
}
.cid-vjNaR3jCWB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vjNaR3jCWB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-vjNaR3jCWB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjNaR3jCWB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNaR3jCWB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNaR3jCWB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjNaR3jCWB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNaR3jCWB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjNaR3jCWB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjNaR3jCWB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNaR3jCWB .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-vjNaR3jCWB a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-vjNaR3jCWB .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-vjNaR3jCWB .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-vjNaR3jCWB .soc-item {
  margin: .5rem .3rem;
}
.cid-vjNaR3jCWB .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-vjNaR3jCWB a.nav-link .mbr-iconfont-btn,
.cid-vjNaR3jCWB a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-vjNaR3jCWB a.nav-link:hover .mbr-iconfont-btn,
.cid-vjNaR3jCWB a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-vjNaR3jCWB a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-vjNaR3jCWB .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-vjNaR3jCWB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjNaR3jCWB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjNaR3jCWB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjNaR3jCWB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjNaR3jCWB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjNaR3jCWB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjNaR3jCWB ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjNaR3jCWB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjNaR3jCWB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-vjNaR3jCWB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjNaR3jCWB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-vjNaR3jCWB .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjNaR3V4Fl {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjNaR3V4Fl .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjNaR3V4Fl .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjNaR3V4Fl .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjNaR3V4Fl img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjNaR3V4Fl .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjNaR3V4Fl H1 {
  color: #767676;
}
.cid-vjNaR3V4Fl .mbr-text,
.cid-vjNaR3V4Fl .mbr-section-btn {
  color: #ff0e8c;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
.cid-vjNb0kzRBi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-vjNb0kzRBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjNb0kzRBi .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjNb0kzRBi .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjNb0kzRBi .nav-item {
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}
.cid-vjNb0kzRBi .nav-link {
  position: relative;
  transition: color 0.3s ease-in-out !important;
  padding: 0.5rem 0.8rem !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNb0kzRBi .nav-link:focus,
.cid-vjNb0kzRBi .nav-link:active,
.cid-vjNb0kzRBi .nav-link:focus-visible,
.cid-vjNb0kzRBi .nav-item:focus,
.cid-vjNb0kzRBi .nav-item:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
.cid-vjNb0kzRBi .nav-item .nav-link::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
.cid-vjNb0kzRBi .nav-link::after {
  content: '' !important;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff0081 !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateX(-50%);
}
.cid-vjNb0kzRBi .nav-link:hover {
  color: #ff0081 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNb0kzRBi .nav-item .nav-link:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
}
.cid-vjNb0kzRBi .nav-link:hover::after {
  width: 85%;
}
.cid-vjNb0kzRBi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNb0kzRBi .nav-item,
.cid-vjNb0kzRBi .nav-link,
.cid-vjNb0kzRBi .navbar-caption {
  font-weight: normal;
}
.cid-vjNb0kzRBi .nav-item:focus,
.cid-vjNb0kzRBi .nav-link:focus {
  outline: none;
}
.cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
  padding-right: 2.5385em;
  padding-left: 3.5385em;
  outline: none !important;
  box-shadow: none !important;
}
.cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
  color: #ffffff !important;
}
.cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vjNb0kzRBi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vjNb0kzRBi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjNb0kzRBi .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ff0081 !important;
  color: #ffffff !important;
}
.cid-vjNb0kzRBi .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #fafafa;
}
.cid-vjNb0kzRBi .navbar.opened {
  transition: all .3s;
  background: #fafafa !important;
}
.cid-vjNb0kzRBi .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vjNb0kzRBi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vjNb0kzRBi .navbar.collapsed .nav-item .nav-link::before,
.cid-vjNb0kzRBi .navbar.collapsed .nav-item .nav-link::after,
.cid-vjNb0kzRBi .navbar.collapsed .dropdown-menu .dropdown-item:before {
  display: none !important;
}
.cid-vjNb0kzRBi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vjNb0kzRBi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vjNb0kzRBi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjNb0kzRBi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjNb0kzRBi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjNb0kzRBi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vjNb0kzRBi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vjNb0kzRBi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-vjNb0kzRBi .navbar.navbar-short {
  background: #fafafa !important;
  min-height: 60px;
}
.cid-vjNb0kzRBi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjNb0kzRBi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjNb0kzRBi .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjNb0kzRBi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjNb0kzRBi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjNb0kzRBi .dropdown-item.active,
.cid-vjNb0kzRBi .dropdown-item:active {
  background-color: transparent;
}
.cid-vjNb0kzRBi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjNb0kzRBi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vjNb0kzRBi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vjNb0kzRBi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-vjNb0kzRBi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjNb0kzRBi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjNb0kzRBi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vjNb0kzRBi .navbar-buttons {
  text-align: center;
}
.cid-vjNb0kzRBi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-vjNb0kzRBi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff0e8c;
}
.cid-vjNb0kzRBi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vjNb0kzRBi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNb0kzRBi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vjNb0kzRBi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vjNb0kzRBi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNb0kzRBi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vjNb0kzRBi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vjNb0kzRBi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vjNb0kzRBi .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-vjNb0kzRBi a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-vjNb0kzRBi .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-vjNb0kzRBi .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-vjNb0kzRBi .soc-item {
  margin: .5rem .3rem;
}
.cid-vjNb0kzRBi .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-vjNb0kzRBi a.nav-link .mbr-iconfont-btn,
.cid-vjNb0kzRBi a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-vjNb0kzRBi a.nav-link:hover .mbr-iconfont-btn,
.cid-vjNb0kzRBi a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-vjNb0kzRBi a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media (max-width: 991px) {
  .cid-vjNb0kzRBi .nav-item .nav-link::after {
    display: none !important;
  }
  .cid-vjNb0kzRBi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vjNb0kzRBi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vjNb0kzRBi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vjNb0kzRBi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vjNb0kzRBi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vjNb0kzRBi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vjNb0kzRBi ul.navbar-nav li {
    margin: auto;
  }
  .cid-vjNb0kzRBi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vjNb0kzRBi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
  }
  .cid-vjNb0kzRBi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vjNb0kzRBi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-vjNb0kzRBi .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
    transform: scale(0, 1);
  }
}
.cid-vjNb0l4Mjn {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #1f1f21;
}
.cid-vjNb0l4Mjn .wrapper {
  position: relative;
  border-top: 3px solid #ff0081;
  border-right: 3px solid #ff0081;
  border-left: 3px solid #ff0081;
  padding: 2.5rem 2.5rem;
}
.cid-vjNb0l4Mjn .wrapper:before {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-vjNb0l4Mjn .wrapper:after {
  content: "";
  background: #ff0081;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-vjNb0l4Mjn img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-vjNb0l4Mjn .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-vjNb0l4Mjn H1 {
  color: #767676;
}
.cid-vjNb0l4Mjn .mbr-text,
.cid-vjNb0l4Mjn .mbr-section-btn {
  color: #ff0e8c;
}
.cid-vjO7e3sdVw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-vjO7e3sdVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjO7e3sdVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjO7e3sdVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-vjO7e3sdVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-vjO7e3sdVw .copyright-row-container {
  row-gap: 0px !important;
  margin-top: 0px !important;
}
.cid-vjO7e3sdVw .core-row {
  width: 100% !important;
  margin: 0 !important;
}
.cid-vjO7e3sdVw .footer-col-fix {
  margin-bottom: 2rem;
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: left !important;
}
.cid-vjO7e3sdVw .triple-logos-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .custom-footer-logo {
  display: inline-block !important;
  width: auto !important;
  max-width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 2.86rem !important;
}
.cid-vjO7e3sdVw .main-logo {
  max-height: 2.6rem !important;
}
.cid-vjO7e3sdVw .mbr-title {
  color: #ffffff !important;
  margin-bottom: 14px;
}
.cid-vjO7e3sdVw .mbr-text {
  color: #aaaaaa !important;
  margin-top: 20px;
}
.cid-vjO7e3sdVw .summary-text-fix {
  margin-top: 1.5rem !important;
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .clean-description-text {
  line-height: 1.6 !important;
}
.cid-vjO7e3sdVw .list-box {
  width: 100%;
}
.cid-vjO7e3sdVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-vjO7e3sdVw .legal-links-wrapper a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .list a {
  transition: color 0.2s ease;
}
.cid-vjO7e3sdVw .list a:hover {
  color: #ff0081 !important;
}
.cid-vjO7e3sdVw .footer-hr-separator {
  border-top: 1px solid #222222 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.8rem !important;
  width: 100% !important;
}
.cid-vjO7e3sdVw .copyright {
  margin-top: 0px !important;
  color: #aaaaaa !important;
}
@media (max-width: 767px) {
  .cid-vjO7e3sdVw .triple-logos-container {
    justify-content: center !important;
  }
  .cid-vjO7e3sdVw .footer-col-fix,
  .cid-vjO7e3sdVw .mbr-title,
  .cid-vjO7e3sdVw .mbr-text,
  .cid-vjO7e3sdVw .summary-text-fix,
  .cid-vjO7e3sdVw .list,
  .cid-vjO7e3sdVw .contact-clean-list,
  .cid-vjO7e3sdVw .legal-links-wrapper,
  .cid-vjO7e3sdVw .layout-copyright-row {
    text-align: center !important;
  }
}
.cid-vjO7e3sdVw UL {
  color: #ffffff;
}
