body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Karla', 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((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.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@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: #f6e2bc !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #dc83fd !important;
}
.bg-warning {
  background-color: #bbbbbb !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f6e2bc !important;
  border-color: #f6e2bc !important;
  color: #9e6f15 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #9e6f15 !important;
  background-color: #edc579 !important;
  border-color: #edc579 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #9e6f15 !important;
  background-color: #edc579 !important;
  border-color: #edc579 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #dc83fd !important;
  border-color: #dc83fd !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #c738fc !important;
  border-color: #c738fc !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #c738fc !important;
  border-color: #c738fc !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #959595 !important;
  border-color: #959595 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #959595 !important;
  border-color: #959595 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #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: #eabb62;
  color: #eabb62 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #9e6f15 !important;
  background-color: #f6e2bc;
  border-color: #f6e2bc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #9e6f15 !important;
  background-color: #f6e2bc !important;
  border-color: #f6e2bc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c01ffb;
  color: #c01ffb !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #dc83fd;
  border-color: #dc83fd;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #dc83fd !important;
  border-color: #dc83fd !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #888888;
  color: #888888 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #f6e2bc !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #dc83fd !important;
}
.text-warning {
  color: #bbbbbb !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #eabb62 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c01ffb !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #888888 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #ffffff;
}
.alert-info {
  background-color: #dc83fd;
}
.alert-warning {
  background-color: #bbbbbb;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f6e2bc;
  border-color: #f6e2bc;
  color: #b47e18;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f6e2bc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #f6e2bc;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f6e2bc;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f6e2bc;
  border-bottom-color: #f6e2bc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f6e2bc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%23f6e2bc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-szMVfFVOaX {
  background: #000000;
}
.cid-szMVfFVOaX .container-fluid {
  padding: 0 3rem;
}
.cid-szMVfFVOaX .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-szMVfFVOaX .image-block img {
  width: 100%;
}
.cid-szMVfFVOaX .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-szMVfFVOaX .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-szMVfFVOaX .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-szMVfFVOaX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-szNaAiB152 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-szNaAiB152 .mbr-section-subtitle {
  color: #767676;
}
.cid-szNaAiB152 .mbr-section-title {
  color: #ffffff;
}
.cid-szNaAiB152 .mbr-section-title I {
  color: #d11b0c;
}
.cid-usLymrjbWF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e873f6;
}
.cid-usLymrjbWF .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-usLymrjbWF .row-element,
.cid-usLymrjbWF .image-element {
  padding: 0;
}
.cid-usLymrjbWF .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-usLymrjbWF .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-usLymrjbWF .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-usLymrjbWF .text-content {
    padding: 2rem 1rem;
  }
  .cid-usLymrjbWF .mbr-title,
  .cid-usLymrjbWF .underline,
  .cid-usLymrjbWF .mbr-text,
  .cid-usLymrjbWF .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-usLymrjbWF .mbr-fallback-image.disabled {
  display: none;
}
.cid-usLymrjbWF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0tPgfBsb8 {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u0tPgfBsb8 .container-fluid {
  padding: 0 3rem;
}
.cid-u0tPgfBsb8 .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u0tPgfBsb8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-u0tPgfBsb8 .video-block {
    width: 100% !important;
  }
}
.cid-tZCEOdMdVM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZCEOdMdVM blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZCEOdMdVM .mbr-text,
.cid-tZCEOdMdVM .blockquote-quote {
  color: #000000;
}
.cid-tZCEOdMdVM footer {
  font-style: normal;
}
.cid-tZl2DsiHxf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tZl2DsiHxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZl2DsiHxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZl2DsiHxf .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tZl2DsiHxf .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tZl2DsiHxf .container {
    padding: 0 25px;
  }
}
.cid-tZl2DsiHxf .row {
  justify-content: center;
}
.cid-tZl2DsiHxf .item {
  padding: 90px 25px;
  border-right: 2px solid #461550;
}
.cid-tZl2DsiHxf .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-tZl2DsiHxf .item {
    border-right: none;
    border-bottom: 2px solid #461550;
  }
  .cid-tZl2DsiHxf .item:last-child {
    border-bottom: none;
  }
}
.cid-tZl2DsiHxf .item .item-wrapper a {
  display: block;
}
.cid-tZl2DsiHxf .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tZl2DsiHxf .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tZl2DsiHxf .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #ffffff;
}
.cid-tZl2DsiHxf .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-tZl2DsiHxf .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-tZl2DsiHxf .item-title {
  color: #ffffff;
}
.cid-tZl2DsiHxf .item-title,
.cid-tZl2DsiHxf .icon-wrapper {
  text-align: center;
}
.cid-tZeUo92hnZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZeUo92hnZ blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZeUo92hnZ .mbr-text,
.cid-tZeUo92hnZ .blockquote-quote {
  color: #000000;
}
.cid-tZeUo92hnZ footer {
  font-style: normal;
}
.cid-uixI269vCG {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/asb-homepagedesign.gif");
}
.cid-uixI269vCG .card-wrapper {
  z-index: 3;
}
.cid-uixI269vCG .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-uixI269vCG:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-uixI269vCG .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uixI269vCG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-uixI269vCG .text-block {
  text-align: left !important;
}
.cid-uixI269vCG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uixI269vCG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-szMKSJGswc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-szMKSJGswc .mbr-section-subtitle {
  color: #767676;
}
.cid-szMKSJGswc .mbr-section-title {
  color: #ffffff;
}
.cid-szMKSJGswc .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZ3OgFY9cD {
  background: #000000;
}
.cid-tZ3OgFY9cD .container-fluid {
  padding: 0 3rem;
}
.cid-tZ3OgFY9cD .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZ3OgFY9cD .image-block img {
  width: 100%;
}
.cid-tZ3OgFY9cD .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZ3OgFY9cD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZ3OgFY9cD .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZ3OgFY9cD .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZvgFXnY09 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZvgFXnY09 blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZvgFXnY09 .mbr-text,
.cid-tZvgFXnY09 .blockquote-quote {
  color: #000000;
}
.cid-tZvgFXnY09 footer {
  font-style: normal;
}
.cid-sAlPRXGShE {
  background: #ffffff;
}
.cid-sAlPRXGShE .container-fluid {
  padding: 0 3rem;
}
.cid-sAlPRXGShE .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-sAlPRXGShE .image-block img {
  width: 100%;
}
.cid-sAlPRXGShE .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-sAlPRXGShE .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-sAlPRXGShE .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-sAlPRXGShE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-szNhgZxZrb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-szNhgZxZrb .mbr-section-subtitle {
  color: #767676;
}
.cid-szNhgZxZrb .mbr-section-title {
  color: #ffffff;
}
.cid-szNhgZxZrb .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZ3R3rLJhq {
  background: #000000;
}
.cid-tZ3R3rLJhq .container-fluid {
  padding: 0 3rem;
}
.cid-tZ3R3rLJhq .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZ3R3rLJhq .image-block img {
  width: 100%;
}
.cid-tZ3R3rLJhq .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZ3R3rLJhq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZ3R3rLJhq .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZ3R3rLJhq .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZf16RZrr8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZf16RZrr8 blockquote {
  border-width: 1px;
  border-color: #44013d;
  padding: 0 0 0 20px;
}
.cid-tZf16RZrr8 .mbr-text,
.cid-tZf16RZrr8 .blockquote-quote {
  color: #000000;
}
.cid-tZf16RZrr8 footer {
  font-style: normal;
}
.cid-tV5xvpJ58Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tV5xvpJ58Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5xvpJ58Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5xvpJ58Q .row {
  justify-content: center;
}
.cid-tV5xvpJ58Q .video-wrapper iframe {
  width: 100%;
}
.cid-tV5xvpJ58Q .title-wrapper {
  margin-bottom: 32px;
}
.cid-tV5xvpJ58Q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV5xvpJ58Q .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tV5xvpJ58Q .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tV5xvpJ58Q .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tV5xvpJ58Q .video-block {
    margin-bottom: 24px;
  }
}
.cid-tV5xvpJ58Q .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tV5xvpJ58Q .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-tV5vA0lvdZ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tV5vA0lvdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV5vA0lvdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV5vA0lvdZ .row {
  justify-content: center;
}
.cid-tV5vA0lvdZ .video-wrapper iframe {
  width: 100%;
}
.cid-tV5vA0lvdZ .title-wrapper {
  margin-bottom: 32px;
}
.cid-tV5vA0lvdZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tV5vA0lvdZ .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tV5vA0lvdZ .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tV5vA0lvdZ .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tV5vA0lvdZ .video-block {
    margin-bottom: 24px;
  }
}
.cid-tV5vA0lvdZ .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tV5vA0lvdZ .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-tZlmgfJTc7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background-540x283.png");
}
.cid-tZlmgfJTc7 .mbr-section-subtitle {
  color: #767676;
}
.cid-tZlmgfJTc7 .mbr-section-title {
  color: #ffffff;
}
.cid-tZlmgfJTc7 .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZCxWTAWCu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZCxWTAWCu blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZCxWTAWCu .mbr-text,
.cid-tZCxWTAWCu .blockquote-quote {
  color: #000000;
}
.cid-tZCxWTAWCu footer {
  font-style: normal;
}
.cid-tZk9fr5AFp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tZk9fr5AFp .mbr-section-head,
.cid-tZk9fr5AFp .gallery_item {
  margin-bottom: 6rem;
}
.cid-tZk9fr5AFp .mbr-section-subtitle {
  margin-bottom: 0.5rem;
}
.cid-tZk9fr5AFp .mbr-section-title {
  line-height: .95;
}
.cid-tZk9fr5AFp .box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-tZk9fr5AFp .gallery-wrap-left {
  padding-right: 2rem;
  max-width: 66%;
  width: 66%;
}
.cid-tZk9fr5AFp .gallery-wrap-right {
  padding-left: 2rem;
  max-width: 33%;
  width: 33%;
}
.cid-tZk9fr5AFp .item-img,
.cid-tZk9fr5AFp img {
  max-width: 100%;
  object-fit: cover;
}
.cid-tZk9fr5AFp .gallery-wrap-50 .item_left {
  padding-right: 1rem;
}
.cid-tZk9fr5AFp .gallery-wrap-50 .item_right {
  padding-left: 1rem;
}
.cid-tZk9fr5AFp .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.cid-tZk9fr5AFp .item-title {
  text-align: left;
  flex: 1 1 0;
}
.cid-tZk9fr5AFp .item-subtitle {
  text-align: right;
  flex: 1 1 0;
}
@media (max-width: 991px) {
  .cid-tZk9fr5AFp .gallery-wrap-left {
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .cid-tZk9fr5AFp .gallery-wrap-right {
    padding-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tZk9fr5AFp .mbr-section-head,
  .cid-tZk9fr5AFp .gallery_item {
    margin-bottom: 3rem;
  }
  .cid-tZk9fr5AFp .gallery-wrap-50 .item_left {
    padding-right: 0;
  }
  .cid-tZk9fr5AFp .gallery-wrap-50 .item_right {
    padding-left: 0;
  }
}
.cid-rwgiIvydot {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-rwgiIvydot .mbr-section-subtitle {
  color: #767676;
}
.cid-rwgiIvydot .mbr-section-title {
  color: #ffffff;
}
.cid-rwgiIvydot .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZ3UbbdGfi {
  background: #000000;
}
.cid-tZ3UbbdGfi .container-fluid {
  padding: 0 3rem;
}
.cid-tZ3UbbdGfi .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZ3UbbdGfi .image-block img {
  width: 100%;
}
.cid-tZ3UbbdGfi .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZ3UbbdGfi .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZ3UbbdGfi .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZ3UbbdGfi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZf18LMNFA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZf18LMNFA blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZf18LMNFA .mbr-text,
.cid-tZf18LMNFA .blockquote-quote {
  color: #000000;
}
.cid-tZf18LMNFA footer {
  font-style: normal;
}
.cid-ulze5YjQ0V {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-ulze5YjQ0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulze5YjQ0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulze5YjQ0V .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ulze5YjQ0V .item {
    margin-bottom: 16px;
  }
}
.cid-ulze5YjQ0V .item:nth-child(2n) .item-wrapper {
  flex-direction: row-reverse;
}
.cid-ulze5YjQ0V .item:nth-child(2n) .item-wrapper .item-img {
  padding-left: 0;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ulze5YjQ0V .item:nth-child(2n) .item-wrapper .item-img {
    padding-right: 0;
  }
}
.cid-ulze5YjQ0V .item .item-wrapper {
  display: flex;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-ulze5YjQ0V .item .item-wrapper {
    display: block;
  }
}
.cid-ulze5YjQ0V .item .item-wrapper .item-content {
  display: flex;
  align-items: flex-end;
  background-color: #4d003c;
  padding: 64px 40px;
  width: 35%;
}
@media (max-width: 1200px) {
  .cid-ulze5YjQ0V .item .item-wrapper .item-content {
    padding: 64px 24px;
  }
}
@media (max-width: 992px) {
  .cid-ulze5YjQ0V .item .item-wrapper .item-content {
    width: 100%;
    padding: 20px 16px;
    margin-bottom: 16px;
  }
}
.cid-ulze5YjQ0V .item .item-wrapper .item-content .title-wrap {
  width: 100%;
}
.cid-ulze5YjQ0V .item .item-wrapper .item-content .title-wrap .item-title {
  margin-bottom: 24px;
}
.cid-ulze5YjQ0V .item .item-wrapper .item-content .title-wrap .item-desc {
  margin-bottom: 0;
}
.cid-ulze5YjQ0V .item .item-wrapper .item-img {
  width: 65%;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-ulze5YjQ0V .item .item-wrapper .item-img {
    width: 100%;
    padding-left: 0;
  }
}
.cid-ulze5YjQ0V .item .item-wrapper .item-img img {
  height: 830px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ulze5YjQ0V .item .item-wrapper .item-img img {
    height: 400px;
  }
}
.cid-ulze5YjQ0V .item-title {
  color: #ffffff;
}
.cid-ulze5YjQ0V .item-desc {
  color: #ffffff;
}
.cid-tZ4i6xaNYj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZ4i6xaNYj .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-tZ4i6xaNYj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZ4i6xaNYj .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-tZ4i6xaNYj .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZ4i6xaNYj .container {
    padding: 0 14px;
  }
}
.cid-tZ4i6xaNYj .title-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tZ4i6xaNYj .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tZ4i6xaNYj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 380px;
  max-width: 380px;
}
@media (max-width: 767px) {
  .cid-tZ4i6xaNYj .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tZ4i6xaNYj .embla__slide .slide-content {
  width: 100%;
}
.cid-tZ4i6xaNYj .embla__slide .slide-content .item-wrapper {
  position: relative;
  border-radius: 0 !important;
}
.cid-tZ4i6xaNYj .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #44013d;
  transform: rotate(-5deg);
  pointer-events: none;
}
.cid-tZ4i6xaNYj .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  z-index: 1;
}
.cid-tZ4i6xaNYj .embla__slide .slide-content .item-wrapper .item-img img {
  height: 300px;
  object-fit: cover;
  border-radius: 0 !important;
  border: 1px solid #44013d;
}
.cid-tZ4i6xaNYj .embla__button--next,
.cid-tZ4i6xaNYj .embla__button--prev {
  display: flex;
}
.cid-tZ4i6xaNYj .embla__button {
  bottom: 0;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #f6e2bc !important;
  color: #dc83fd !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-tZ4i6xaNYj .embla__button:hover {
  opacity: .7 !important;
}
.cid-tZ4i6xaNYj .embla__button.embla__button--prev {
  right: 7rem;
  margin-left: 2.5rem;
}
.cid-tZ4i6xaNYj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tZ4i6xaNYj .embla {
  position: relative;
  width: 100%;
}
.cid-tZ4i6xaNYj .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-tZ4i6xaNYj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tZ4i6xaNYj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tZ4i6xaNYj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tZ4i6xaNYj .mbr-section-title {
  color: #01004c;
  text-align: center;
}
.cid-sAlQ8DZJr0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-sAlQ8DZJr0 .mbr-section-subtitle {
  color: #767676;
}
.cid-sAlQ8DZJr0 .mbr-section-title {
  color: #ffffff;
}
.cid-sAlQ8DZJr0 .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZ3UzWm8zp {
  background: #000000;
}
.cid-tZ3UzWm8zp .container-fluid {
  padding: 0 3rem;
}
.cid-tZ3UzWm8zp .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZ3UzWm8zp .image-block img {
  width: 100%;
}
.cid-tZ3UzWm8zp .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZ3UzWm8zp .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZ3UzWm8zp .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZ3UzWm8zp .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZf1afnkpo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZf1afnkpo blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZf1afnkpo .mbr-text,
.cid-tZf1afnkpo .blockquote-quote {
  color: #000000;
}
.cid-tZf1afnkpo footer {
  font-style: normal;
}
.cid-uiylvhmkWR {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #e873f6;
}
.cid-uiylvhmkWR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiylvhmkWR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiylvhmkWR .container-fluid {
  padding: 0 28px;
}
@media (max-width: 992px) {
  .cid-uiylvhmkWR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uiylvhmkWR .container-fluid {
    padding: 0 14px;
  }
}
@media (max-width: 992px) {
  .cid-uiylvhmkWR .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uiylvhmkWR .container {
    padding: 0 14px;
  }
}
.cid-uiylvhmkWR .content-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uiylvhmkWR .content-wrapper .link-wrapper {
  display: block;
}
.cid-uiylvhmkWR .content-wrapper .link-wrapper:hover .mbr-link,
.cid-uiylvhmkWR .content-wrapper .link-wrapper:focus .mbr-link {
  color: #ffffff;
}
.cid-uiylvhmkWR .content-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiylvhmkWR .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uiylvhmkWR .mbr-link {
  color: #851523;
  text-align: center;
}
#custom-html-6x {
  /* Type valid CSS here */
}
#custom-html-6x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6x p {
  font-size: 60px;
  color: #777;
}
.cid-tZljuOYuvD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tZljuOYuvD img {
  width: 180px;
  margin: auto;
}
.cid-tZljuOYuvD .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-tZljuOYuvD .card:hover {
  transform: scale(0.9);
}
@media (min-width: 992px) {
  .cid-tZljuOYuvD .card {
    max-width: 20%;
  }
}
.cid-tZljuOYuvD .mbr-section-title {
  color: #4e423d;
}
.cid-u0tayHF3Pv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u0tayHF3Pv img {
  width: 180px;
  margin: auto;
}
.cid-u0tayHF3Pv .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-u0tayHF3Pv .card:hover {
  transform: scale(0.9);
}
@media (min-width: 992px) {
  .cid-u0tayHF3Pv .card {
    max-width: 20%;
  }
}
.cid-u0tayHF3Pv .mbr-section-title {
  color: #4e423d;
}
.cid-uitSHf4g8F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
  overflow: hidden;
}
.cid-uitSHf4g8F .mbr-overlay {
  background: #44013d;
  opacity: 0.1;
}
.cid-uitSHf4g8F .row {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 26px 38px;
}
@media (max-width: 1023px) {
  .cid-uitSHf4g8F .row {
    padding: 0;
  }
}
.cid-uitSHf4g8F .item-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  flex-shrink: 1;
  padding: 0 !important;
}
@media (max-width: 1023px) {
  .cid-uitSHf4g8F .item-text {
    max-width: 100%;
  }
}
.cid-uitSHf4g8F .item-title {
  position: relative;
  color: #e3ebf3;
}
.cid-uitSHf4g8F .item-title:after {
  content: "";
  display: block;
  margin: 20px auto;
  width: 30px;
  height: 1px;
  background-color: currentColor;
}
.cid-uitSHf4g8F .mbr-text {
  color: #e3ebf3;
}
.cid-uitSHf4g8F .mbr-section-btn .btn {
  min-width: 260px;
  min-height: 60px;
}
.cid-uitSHf4g8F .item-img {
  flex-shrink: 1.5;
  max-width: 255px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  padding: 0 !important;
}
@media (max-width: 1023px) {
  .cid-uitSHf4g8F .item-img {
    display: none;
  }
}
.cid-uitSHf4g8F .item-img-1 {
  transform: rotate(-15deg);
}
.cid-uitSHf4g8F .item-img-2 {
  transform: rotate(15deg);
}
.cid-uitSHf4g8F .item-img img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
}
.cid-ss4PEyrj3J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ss4PEyrj3J .container-fluid {
  padding-left: 0;
}
.cid-ss4PEyrj3J .mbr-text,
.cid-ss4PEyrj3J .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-ss4PEyrj3J .mbr-text,
  .cid-ss4PEyrj3J .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-ss4PEyrj3J .mbr-text,
  .cid-ss4PEyrj3J .mbr-section-title {
    text-align: center;
  }
}
.cid-ss4PEyrj3J a.btn {
  height: 100%;
  margin: 0;
}
.cid-ss4PEyrj3J .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-ss4PEyrj3J .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ss4PEyrj3J .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ss4PEyrj3J .justify-content-center {
  align-items: center;
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uNgWbyz1OV.popup-builder {
  background-color: #ffffff;
}
.cid-uNgWbyz1OV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNgWbyz1OV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNgWbyz1OV .modal-content,
.cid-uNgWbyz1OV .modal-dialog {
  height: auto;
}
.cid-uNgWbyz1OV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNgWbyz1OV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNgWbyz1OV .form-wrapper .mbr-form .form-group,
  .cid-uNgWbyz1OV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNgWbyz1OV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNgWbyz1OV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uNgWbyz1OV .mbr-text {
  text-align: center;
}
.cid-uNgWbyz1OV .pt-0 {
  padding-top: 0 !important;
}
.cid-uNgWbyz1OV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNgWbyz1OV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNgWbyz1OV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNgWbyz1OV .modal-open {
  overflow: hidden;
}
.cid-uNgWbyz1OV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNgWbyz1OV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNgWbyz1OV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNgWbyz1OV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uNgWbyz1OV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNgWbyz1OV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNgWbyz1OV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNgWbyz1OV .modal-content {
  background: #e873f6;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uNgWbyz1OV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNgWbyz1OV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNgWbyz1OV .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNgWbyz1OV .modal-backdrop.show {
  opacity: .5;
}
.cid-uNgWbyz1OV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uNgWbyz1OV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNgWbyz1OV .modal-header {
    padding: 1rem;
  }
}
.cid-uNgWbyz1OV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNgWbyz1OV .modal-header .close svg {
  fill: #353535;
}
.cid-uNgWbyz1OV .modal-header .close:hover {
  opacity: 1;
}
.cid-uNgWbyz1OV .modal-header .close:focus {
  outline: none;
}
.cid-uNgWbyz1OV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uNgWbyz1OV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNgWbyz1OV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNgWbyz1OV .modal-body {
    padding: 1rem;
  }
}
.cid-uNgWbyz1OV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uNgWbyz1OV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNgWbyz1OV .modal-footer {
    padding: 1rem;
  }
}
.cid-uNgWbyz1OV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNgWbyz1OV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNgWbyz1OV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNgWbyz1OV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNgWbyz1OV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNgWbyz1OV .modal-lg,
  .cid-uNgWbyz1OV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNgWbyz1OV .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNgWbyz1OV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNgWbyz1OV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uNgWbyz1OV .form-group {
  margin-bottom: 1rem;
}
.cid-uNgWbyz1OV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNgWbyz1OV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNgWbyz1OV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uNgWbyz1OV .mbr-section-btn {
  margin: 0;
}
.cid-uNgWbyz1OV .mbr-section-btn .btn {
  margin: 0;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQJYM5NrPa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tQJYM5NrPa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQJYM5NrPa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQJYM5NrPa .container {
  max-width: 1600px;
}
.cid-tQJYM5NrPa .row {
  justify-content: center;
}
.cid-tQJYM5NrPa .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .content-container {
    flex-wrap: wrap;
  }
}
.cid-tQJYM5NrPa .info-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .info-container {
    width: 100%;
  }
}
.cid-tQJYM5NrPa .title-container {
  margin-bottom: 50px;
}
.cid-tQJYM5NrPa .mbr-section-title {
  color: #FFDD65;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tQJYM5NrPa .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .mbr-section-subtitle {
    text-align: center !important;
    margin-top: 1rem;
  }
}
.cid-tQJYM5NrPa .btn-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: auto;
}
.cid-tQJYM5NrPa .text-container {
  max-width: 400px;
  margin: 12px auto 0 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .text-container {
    margin: 24px auto;
  }
}
.cid-tQJYM5NrPa .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .mbr-text {
    text-align: center !important;
  }
}
.cid-tQJYM5NrPa .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tQJYM5NrPa .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tQJYM5NrPa .icon-text {
  color: #AE5EFF;
}
.cid-tQJYM5NrPa .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tQJYM5NrPa .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tQJYM5NrPa .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tQJYM5NrPa form {
  width: 100%;
}
.cid-tQJYM5NrPa form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tQJYM5NrPa form p {
  color: #ffffff;
}
.cid-tQJYM5NrPa form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tQJYM5NrPa form .mbr-section-btn .btn {
  padding: 10px 40px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-tQJYM5NrPa form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tQJYM5NrPa form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tQJYM5NrPa form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tQJYM5NrPa form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tQJYM5NrPa form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tQJYM5NrPa form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-tQJYM5NrPa form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form .form-control:hover {
  outline: none !important;
}
.cid-tQJYM5NrPa form select {
  color: #939292 !important;
}
.cid-tQJYM5NrPa form textarea {
  height: 200px;
}
.cid-tQJYM5NrPa form input:active,
.cid-tQJYM5NrPa form textarea:active,
.cid-tQJYM5NrPa form input:focus,
.cid-tQJYM5NrPa form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tQJYM5NrPa form input:active::-webkit-input-placeholder,
.cid-tQJYM5NrPa form textarea:active::-webkit-input-placeholder,
.cid-tQJYM5NrPa form input:focus::-webkit-input-placeholder,
.cid-tQJYM5NrPa form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form input:active::-moz-placeholder,
.cid-tQJYM5NrPa form textarea:active::-moz-placeholder,
.cid-tQJYM5NrPa form input:focus::-moz-placeholder,
.cid-tQJYM5NrPa form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form input:active:-moz-placeholder,
.cid-tQJYM5NrPa form textarea:active:-moz-placeholder,
.cid-tQJYM5NrPa form input:focus:-moz-placeholder,
.cid-tQJYM5NrPa form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form input:active:-ms-input-placeholder,
.cid-tQJYM5NrPa form textarea:active:-ms-input-placeholder,
.cid-tQJYM5NrPa form input:focus:-ms-input-placeholder,
.cid-tQJYM5NrPa form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tQJYM5NrPa form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tQJYM5NrPa form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tQJYM5NrPa form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tQJYM5NrPa form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tQJYM5NrPa form .form-check-input:focus,
.cid-tQJYM5NrPa form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tQJYM5NrPa form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tQJYM5NrPa .img-container {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tQJYM5NrPa .img-container {
    width: 100%;
    margin-top: 40px;
  }
}
.cid-tQJYM5NrPa .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-tQJYM5NrPa .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tQJYM5NrPa .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
  background-color: #000000;
}
.cid-tQJYM5NrPa .image-wrapper img {
  width: 75%;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.cid-tQJYOjI0m4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tQJYOjI0m4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQJYOjI0m4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQJYOjI0m4 .row {
  justify-content: left;
}
.cid-tQJYOjI0m4 .mbr-section-title {
  color: #FFDD65;
}
.cid-tQJYOjI0m4 .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tQJYOjI0m4 .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-tQJYOjI0m4 .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tQJYOjI0m4 .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-tQJYOjI0m4 .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-tQJYOjI0m4 .custom-section-btn {
  height: 100%;
}
.cid-tQJYOjI0m4 .custom-section-btn .btn {
  height: 100%;
}
.cid-tQJYOjI0m4 .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQJYOjI0m4 .text-container {
    margin: 26px auto 0;
  }
}
.cid-tQJYOjI0m4 .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tQJYOjI0m4 .mbr-text {
    text-align: center !important;
  }
}
.cid-tQJYOjI0m4 .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tQJYOjI0m4 .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tQJYOjI0m4 .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tQJYOjI0m4 .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tQJYOjI0m4 .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-tQJYOjI0m4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tQJYOjI0m4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVnooKnt6J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #16d904;
}
.cid-tVnooKnt6J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVnooKnt6J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVnnowrEDD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tVnnowrEDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVnnowrEDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVnnowrEDD .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tVnnowrEDD img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tVnnowrEDD img {
    min-height: 400px;
  }
}
.cid-tVnnGcg1GC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #16d904;
}
.cid-tVnnGcg1GC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVnnGcg1GC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVnoQHt8Vh {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/img-2622-2000x1499.png");
  background-size: calc(50% - 1rem);
  background-position: left;
  background-color: #fffaee;
}
@media (max-width: 992px) {
  .cid-tVnoQHt8Vh {
    background-size: cover;
    background-position: center;
  }
}
.cid-tVnoQHt8Vh .container-fluid {
  padding: 0 4rem;
}
.cid-tVnoQHt8Vh a:hover {
  text-decoration: underline;
}
.cid-tVnoQHt8Vh .iconfont-wrapper {
  width: 2rem;
  height: 2rem;
  background: #f6e2bc;
  display: flex;
  margin-right: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-tVnoQHt8Vh .iconfont-wrapper span {
  font-size: 1.1rem;
  width: fit-content;
  color: white;
}
.cid-tVnoQHt8Vh .list-item {
  align-items: center;
  margin-bottom: 0.5rem;
  display: flex;
}
@media (max-width: 767px) {
  .cid-tVnoQHt8Vh .list-item {
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  .cid-tVnoQHt8Vh .content-col {
    padding-left: 6rem;
  }
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tZCGXDaPHz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZCGXDaPHz .nav-item,
.cid-tZCGXDaPHz .nav-link,
.cid-tZCGXDaPHz .navbar-caption {
  font-weight: normal;
}
.cid-tZCGXDaPHz .nav-item:focus,
.cid-tZCGXDaPHz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tZCGXDaPHz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tZCGXDaPHz .nav-item .nav-link {
    position: relative;
  }
  .cid-tZCGXDaPHz .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tZCGXDaPHz .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tZCGXDaPHz .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tZCGXDaPHz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZCGXDaPHz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZCGXDaPHz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tZCGXDaPHz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tZCGXDaPHz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZCGXDaPHz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tZCGXDaPHz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZCGXDaPHz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZCGXDaPHz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tZCGXDaPHz .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tZCGXDaPHz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tZCGXDaPHz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZCGXDaPHz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZCGXDaPHz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZCGXDaPHz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZCGXDaPHz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZCGXDaPHz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZCGXDaPHz .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-tZCGXDaPHz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZCGXDaPHz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tZCGXDaPHz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZCGXDaPHz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZCGXDaPHz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZCGXDaPHz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZCGXDaPHz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZCGXDaPHz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZCGXDaPHz .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-tZCGXDaPHz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZCGXDaPHz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZCGXDaPHz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZCGXDaPHz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZCGXDaPHz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZCGXDaPHz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZCGXDaPHz .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tZCGXDaPHz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZCGXDaPHz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZCGXDaPHz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZCGXDaPHz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZCGXDaPHz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZCGXDaPHz .dropdown-item.active,
.cid-tZCGXDaPHz .dropdown-item:active {
  background-color: transparent;
}
.cid-tZCGXDaPHz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZCGXDaPHz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZCGXDaPHz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZCGXDaPHz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tZCGXDaPHz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tZCGXDaPHz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tZCGXDaPHz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZCGXDaPHz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZCGXDaPHz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZCGXDaPHz .navbar-buttons {
  text-align: center;
}
.cid-tZCGXDaPHz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tZCGXDaPHz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tZCGXDaPHz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZCGXDaPHz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZCGXDaPHz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZCGXDaPHz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZCGXDaPHz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZCGXDaPHz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZCGXDaPHz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZCGXDaPHz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZCGXDaPHz .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tZCGXDaPHz a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tZCGXDaPHz .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tZCGXDaPHz .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tZCGXDaPHz .soc-item {
  margin: .5rem .3rem;
}
.cid-tZCGXDaPHz .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZCGXDaPHz .navbar {
    height: 77px;
  }
  .cid-tZCGXDaPHz .navbar.opened {
    height: auto;
  }
  .cid-tZCGXDaPHz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZCGXzYAQw {
  background: #000000;
}
.cid-tZCGXzYAQw .container-fluid {
  padding: 0 3rem;
}
.cid-tZCGXzYAQw .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZCGXzYAQw .image-block img {
  width: 100%;
}
.cid-tZCGXzYAQw .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZCGXzYAQw .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZCGXzYAQw .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZCGXzYAQw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZCGXApffG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #44013d;
}
.cid-tZCGXApffG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCGXApffG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCGXApffG .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tZCGXApffG .mbr-text,
.cid-tZCGXApffG .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZCGXApffG b,
.cid-tZCGXApffG strong {
  font-weight: 900;
}
.cid-tZCGXApffG .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tZCH9q3U9e {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZCH9q3U9e blockquote {
  border-width: 1px;
  border-color: #4d003c;
  padding: 0 0 0 20px;
}
.cid-tZCH9q3U9e .mbr-text,
.cid-tZCH9q3U9e .blockquote-quote {
  color: #000000;
}
.cid-tZCH9q3U9e footer {
  font-style: normal;
}
.cid-usLqnZZFq7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e873f6;
}
.cid-usLqnZZFq7 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-usLqnZZFq7 .row-element,
.cid-usLqnZZFq7 .image-element {
  padding: 0;
}
.cid-usLqnZZFq7 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-usLqnZZFq7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-usLqnZZFq7 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-usLqnZZFq7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-usLqnZZFq7 .mbr-title,
  .cid-usLqnZZFq7 .underline,
  .cid-usLqnZZFq7 .mbr-text,
  .cid-usLqnZZFq7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-usLqnZZFq7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usLqnZZFq7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCGXBnFJs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-tZCGXBnFJs .mbr-section-subtitle {
  color: #767676;
}
.cid-tZCGXBnFJs .mbr-section-title {
  color: #ffffff;
}
.cid-tZCGXBnFJs .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZCGXAON7F {
  padding-top: 90px;
  padding-bottom: 75px;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #e873f6 30%, #e873f6 100%);
  overflow: hidden !important;
}
.cid-tZCGXAON7F .animated-element {
  color: #ffffff;
}
.cid-tZCGXAON7F .img-block {
  align-self: center;
}
.cid-tZCGXAON7F .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZCGXAON7F .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZCGXAON7F .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tZCGXAON7F {
    background: #e873f6;
  }
  .cid-tZCGXAON7F .img-block {
    padding-bottom: 2rem;
  }
}
.cid-tZCGXAON7F .mbr-section-subtitle B {
  color: #6bedfd;
}
.cid-tZOC0FWxvW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZOC0FWxvW .line {
  background-color: #461550;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZOJiukMdN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tZOJiukMdN img,
.cid-tZOJiukMdN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZOJiukMdN .item:focus,
.cid-tZOJiukMdN span:focus {
  outline: none;
}
.cid-tZOJiukMdN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tZOJiukMdN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZOJiukMdN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZOJiukMdN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZOJiukMdN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZOJiukMdN .mbr-section-title {
  color: #232323;
}
.cid-tZCZETROQX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #66458e;
}
.cid-tZCZETROQX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCZETROQX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}
.cid-tZCZETROQX .topbg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #efefef;
}
.cid-tZCZETROQX .mbr-section-title {
  color: #ffffff;
}
.cid-tZCZETROQX .mbr-text,
.cid-tZCZETROQX .mbr-section-btn {
  color: #ffffff;
}
.cid-tZCZETROQX .media-content,
.cid-tZCZETROQX .mbr-figure {
  align-self: center;
}
.cid-tZCZETROQX .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-tZCZETROQX .app-video-wrapper {
  background: transparent;
}
.cid-tZCGXCi92z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tZCGXCi92z .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tZCGXCi92z .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tZCGXCi92z .mbr-text {
  color: #480e5e;
  text-align: right;
}
.cid-tZCGXCJbm0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/as-purple-banner-background2-180x32.png");
}
.cid-tZCGXCJbm0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tZCGXCJbm0 .mbr-section-title {
  color: #ffffff;
}
.cid-tZCGXCJbm0 .mbr-section-title I {
  color: #d11b0c;
}
.cid-tZCGXDIioN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZCGXDIioN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZCGXDIioN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZCGXDIioN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZCGXDIioN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZCGXDIioN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZCGXDIioN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZCGXDIioN .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZCGXDIioN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZCGXDIioN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZCGXDIioN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZCGXDIioN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZCGXDIioN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZCGXDIioN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZCGXDIioN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZvLj4aXDg {
  background: #000000;
}
.cid-tZvLj4aXDg .container-fluid {
  padding: 0 3rem;
}
.cid-tZvLj4aXDg .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZvLj4aXDg .image-block img {
  width: 100%;
}
.cid-tZvLj4aXDg .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZvLj4aXDg .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZvLj4aXDg .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZvLj4aXDg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tZvIUicIQp {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tZvIUicIQp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZvIUicIQp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZvIUicIQp .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tZvIUicIQp .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tZvIUicIQp .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZvIUicIQp .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tZvIUicIQp .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #f6e2bc;
}
.cid-tZvQKdKTLb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 991px) {
  .cid-tZvQKdKTLb .container-fluid {
    padding-left: 0;
  }
}
.cid-tZvQKdKTLb .mbr-text,
.cid-tZvQKdKTLb .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tZvQKdKTLb .mbr-text,
  .cid-tZvQKdKTLb .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tZvQKdKTLb .mbr-text,
  .cid-tZvQKdKTLb .mbr-section-title {
    text-align: center;
  }
}
.cid-tZvQKdKTLb a.btn {
  height: 100%;
  margin: 0;
}
.cid-tZvQKdKTLb .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tZvQKdKTLb .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tZvQKdKTLb .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tZvQKdKTLb .justify-content-center {
  align-items: center;
}
.cid-tZvQKdKTLb H1 {
  color: #3c0131;
}
.cid-tZvJ2usJW4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tZvJ2usJW4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZvJ2usJW4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZvJ2usJW4 .google-map {
  height: 350px;
  position: relative;
}
.cid-tZvJ2usJW4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZvJ2usJW4 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZvJ2usJW4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZvJ2usJW4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZvOlfSVPQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZvELLLni0 {
  background: #000000;
}
.cid-tZvELLLni0 .container-fluid {
  padding: 0 3rem;
}
.cid-tZvELLLni0 .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-tZvELLLni0 .image-block img {
  width: 100%;
}
.cid-tZvELLLni0 .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-tZvELLLni0 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tZvELLLni0 .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-tZvELLLni0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uixcEZk8Vy {
  display: flex;
  background-image: url("../../../assets/images/this-is-our-story2.gif");
}
.cid-uixcEZk8Vy .mbr-overlay {
  background-color: #44013d;
  opacity: 0.2;
}
.cid-uixcEZk8Vy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uixcEZk8Vy .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uixcEZk8Vy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uixcEZk8Vy {
    align-items: center;
  }
  .cid-uixcEZk8Vy .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uixcEZk8Vy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uixcEZk8Vy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uixcEZk8Vy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uixcEZk8Vy .content-wrap {
    width: 100%;
  }
}
.cid-uixcEZk8Vy .mbr-section-subtitle,
.cid-uixcEZk8Vy .line {
  color: #ffffff;
}
.cid-uixcEZk8Vy .mbr-text,
.cid-uixcEZk8Vy .mbr-section-btn {
  text-align: right;
}
.cid-tZvphCOOHt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tZvphCOOHt .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-tZvphCOOHt .mbr-media {
  display: inline-block;
  width: 100%;
}
.cid-tZvphCOOHt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tZvphCOOHt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tZvphCOOHt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tZvphCOOHt a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tZvphCOOHt a.close:hover {
  color: #ffffff;
}
.cid-tZvphCOOHt .btn-play {
  position: relative;
  background: #e873f6;
  width: 60px;
  height: 60px;
  border: 1px solid #e873f6;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-tZvphCOOHt .btn-play:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 150%;
  height: 150%;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  left: -25%;
  top: -25%;
  opacity: 1;
  -webkit-animation: 1s play-video linear infinite;
  animation: 1s play-video linear infinite;
}
@keyframes play-video {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes play-video {
  0% {
    -webkit-transform: scale(0.68);
  }
  100% {
    -webkit-transform: scale(1.2);
    -webkit-opacity: 0;
  }
}
.cid-tZvphCOOHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZvphCOOHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZvphCOOHt H1 {
  text-align: left;
  color: #000000;
}
.cid-tZvjIjJH9t {
  background-image: url("../../../assets/images/this-is-our-storybottom.gif");
}
.cid-tZvjIjJH9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZvjIjJH9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2UmXXIRw4 {
  background: #ffffff;
}
.cid-u2UmXXIRw4 .container-fluid {
  padding: 0 3rem;
}
.cid-u2UmXXIRw4 .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-u2UmXXIRw4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-u2UmXXIRw4 .video-block {
    width: 100% !important;
  }
}
.cid-u2WIbiK1Ia {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/-3c4ba0d4-1fd6-4983-9c10-1474fc0457be-1024x1024.jpg");
}
.cid-u2WIbiK1Ia .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2WIbiK1Ia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2WIbiK1Ia .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u2WIbiK1Ia .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u2WIbiK1Ia .container {
    padding: 0 30px;
  }
}
.cid-u2WIbiK1Ia .card-wrapper {
  background-color: #efefef;
  padding: 16px 50px;
  border-radius: 1.5em;
}
@media (max-width: 992px) {
  .cid-u2WIbiK1Ia .card-wrapper {
    padding: 16px 30px;
  }
}
.cid-u2WIbiK1Ia .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-u2WIbiK1Ia .card-wrapper form {
  padding: 20px 30px;
  border: 2px solid #461550;
  border-radius: 1em;
}
@media (max-width: 425px) {
  .cid-u2WIbiK1Ia .card-wrapper form {
    padding: 20px 10px;
  }
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group {
  margin-bottom: 30px !important;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-control {
  padding: 8px 16px;
  box-shadow: none;
  border: 2px dashed #461550 !important;
  border-radius: 1em;
  background-color: transparent;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-control::placeholder {
  color: #bbbbbb;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-control:hover,
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-control:focus {
  border: 2px dashed #461550 !important;
  box-shadow: none;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-control-label label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-check {
  padding-left: 2em;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group .form-check .form-check-input {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-u2WIbiK1Ia .card-wrapper form .dragArea.row .mbr-section-btn {
  margin-top: 50px;
}
.cid-u2WIbiK1Ia .mbr-text {
  color: #ffffff;
}
.cid-u2WIbiK1Ia label {
  color: #4E4E4E;
}
.cid-u2VwHhzvhP {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #44013d;
}
.cid-u2VwHhzvhP .box1 {
  background-image: url("../../../assets/images/365-affirmationpresenter-2000x1500.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-u2VwHhzvhP .box2 {
  background-image: url("../../../assets/images/365-day1-hope-1x1-43-1792x1344.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-u2VwHhzvhP .icon-wrap {
  background-color: #e873f6 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-u2VwHhzvhP .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-u2VwHhzvhP .icon-wrap span {
  padding-left: 8px;
}
.cid-u2VwHhzvhP .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u2VwHhzvhP .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-u2VwHhzvhP .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u2VwHhzvhP .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u2VwHhzvhP .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u2VwHhzvhP a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u2VwHhzvhP a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u2VwHhzvhP {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .cid-u2VwHhzvhP .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-u2VwHhzvhP {
    padding-top: 21px;
    padding-bottom: 28px;
  }
  .cid-u2VwHhzvhP .box1,
  .cid-u2VwHhzvhP .box2 {
    height: 250px;
  }
}
.cid-u2VwHhzvhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2VwHhzvhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2VwYcLhEI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u2VwYcLhEI {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-u2VwYcLhEI .box {
  background-image: url("../../../assets/images/dontcrackphoto-2000x2000.jpeg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2VwYcLhEI .icon-wrap {
  background-color: #5580ff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-u2VwYcLhEI .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-u2VwYcLhEI .icon-wrap span {
  padding-left: 8px;
}
.cid-u2VwYcLhEI .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u2VwYcLhEI .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-u2VwYcLhEI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u2VwYcLhEI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u2VwYcLhEI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u2VwYcLhEI a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u2VwYcLhEI a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-u2VwYcLhEI {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-u2VwYcLhEI .box {
    height: 250px;
  }
  .cid-u2VwYcLhEI .row {
    padding: 1rem!important;
  }
}
.cid-u2VwYcLhEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2VwYcLhEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u36uce5v56 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u36uce5v56 .box1 {
  background-image: url("../../../assets/images/365-affirmationpresenter-2000x1500.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-u36uce5v56 .box2 {
  background-image: url("../../../assets/images/365-day1-hope-1x1-43-1792x1344.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-u36uce5v56 .icon-wrap {
  background-color: #e873f6 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-u36uce5v56 .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-u36uce5v56 .icon-wrap span {
  padding-left: 8px;
}
.cid-u36uce5v56 .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u36uce5v56 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-u36uce5v56 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u36uce5v56 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u36uce5v56 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u36uce5v56 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u36uce5v56 a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u36uce5v56 {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .cid-u36uce5v56 .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-u36uce5v56 {
    padding-top: 21px;
    padding-bottom: 28px;
  }
  .cid-u36uce5v56 .box1,
  .cid-u36uce5v56 .box2 {
    height: 250px;
  }
}
.cid-u36uce5v56 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u36uce5v56 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2VuNjz2wG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #44013d;
}
.cid-u2VuNjz2wG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2VuNjz2wG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2VuNjz2wG .container,
.cid-u2VuNjz2wG .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u2VuNjz2wG .container,
  .cid-u2VuNjz2wG .container-fluid {
    padding: 0 20px;
  }
}
.cid-u2VuNjz2wG .row {
  padding: 50px 0;
  margin: 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-u2VuNjz2wG .row {
    margin: 0;
  }
}
.cid-u2VuNjz2wG .card {
  padding: 0;
}
.cid-u2VuNjz2wG .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 350px;
  max-width: 350px;
}
@media (max-width: 768px) {
  .cid-u2VuNjz2wG .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u2VuNjz2wG .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2VuNjz2wG .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-u2VuNjz2wG .embla__button--next,
.cid-u2VuNjz2wG .embla__button--prev {
  display: flex;
}
.cid-u2VuNjz2wG .embla__button {
  top: -0.8rem;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent;
  color: #dc83fd;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u2VuNjz2wG .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u2VuNjz2wG .embla__button:hover {
  background: transparent;
  color: #dc83fd;
  opacity: .5;
}
.cid-u2VuNjz2wG .embla__button.embla__button--prev {
  left: auto;
  right: 3rem;
}
.cid-u2VuNjz2wG .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-u2VuNjz2wG .embla__button {
    top: -0.8rem;
  }
}
.cid-u2VuNjz2wG .embla {
  position: relative;
  width: 100%;
}
.cid-u2VuNjz2wG .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u2VuNjz2wG .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u2VuNjz2wG .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u2VuNjz2wG .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tQKo8S6Xs7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #d11b0c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .nav-item,
.cid-tQKo8S6Xs7 .nav-link,
.cid-tQKo8S6Xs7 .navbar-caption {
  font-weight: normal;
}
.cid-tQKo8S6Xs7 .nav-item:focus,
.cid-tQKo8S6Xs7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tQKo8S6Xs7 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link {
    position: relative;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #d11b0c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-tQKo8S6Xs7 .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tQKo8S6Xs7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQKo8S6Xs7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tQKo8S6Xs7 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tQKo8S6Xs7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tQKo8S6Xs7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQKo8S6Xs7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tQKo8S6Xs7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tQKo8S6Xs7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQKo8S6Xs7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQKo8S6Xs7 .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-tQKo8S6Xs7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tQKo8S6Xs7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tQKo8S6Xs7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQKo8S6Xs7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tQKo8S6Xs7 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQKo8S6Xs7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tQKo8S6Xs7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQKo8S6Xs7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQKo8S6Xs7 .dropdown-item.active,
.cid-tQKo8S6Xs7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tQKo8S6Xs7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-tQKo8S6Xs7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQKo8S6Xs7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQKo8S6Xs7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQKo8S6Xs7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQKo8S6Xs7 .navbar-buttons {
  text-align: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e873f6;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQKo8S6Xs7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQKo8S6Xs7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQKo8S6Xs7 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-tQKo8S6Xs7 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-tQKo8S6Xs7 .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-tQKo8S6Xs7 .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tQKo8S6Xs7 .soc-item {
  margin: .5rem .3rem;
}
.cid-tQKo8S6Xs7 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQKo8S6Xs7 .navbar {
    height: 77px;
  }
  .cid-tQKo8S6Xs7 .navbar.opened {
    height: auto;
  }
  .cid-tQKo8S6Xs7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usyvjYAjjR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-usyvjYAjjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-usyvjYAjjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-usyvjYAjjR .container {
    padding: 0 24px;
  }
}
.cid-usyvjYAjjR .content-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #e873f6;
  border-radius: 2rem;
  padding: 80px 48px 0;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper {
    padding: 48px 24px 0;
  }
}
.cid-usyvjYAjjR .content-wrapper .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #e873f6;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper {
  margin-top: 22px;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
  display: flex;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img:first-child {
  margin-left: 0;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
    text-align: center;
  }
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .image-wrapper .image-wrap {
  width: 1200px;
  border: 16px solid #fbfaf9;
  background-color: #fbfaf9;
  border-radius: 1rem;
  margin-bottom: -16px;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .image-wrapper .image-wrap {
    border: 8px solid #fbfaf9;
  }
}
.cid-usyvjYAjjR .content-wrapper .content-wrap .image-wrapper .image-wrap img {
  height: 470px;
  object-fit: cover;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-usyvjYAjjR .content-wrapper .content-wrap .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-usyvjYAjjR .mbr-section-title {
  color: #18212d;
}
.cid-usyvjYAjjR .mbr-desc,
.cid-usyvjYAjjR .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-usyvjYAjjR .mbr-text,
.cid-usyvjYAjjR .text-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-usyvjYAjjR .mbr-rating {
  color: #EFCC4E;
}
.cid-usyvjYAjjR .mbr-people {
  color: #18212d;
  text-align: center;
}
.cid-usyvjYAjjR .mbr-section-title,
.cid-usyvjYAjjR .mbr-section-btn {
  text-align: center;
}
.cid-usyvjYAjjR .mbr-rating,
.cid-usyvjYAjjR .rating-wrapper,
.cid-usyvjYAjjR .people-wrapper {
  text-align: center;
}
#custom-html-7q {
  /* Type valid CSS here */
}
#custom-html-7q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7q p {
  font-size: 60px;
  color: #777;
}
.cid-usyCKQWvkQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-usyCKQWvkQ .mbr-section-subtitle {
  color: #767676;
}
.cid-usyCKQWvkQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-usyCKQWvkQ .table-wrapper {
  margin: 0 auto;
}
.cid-usyCKQWvkQ table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-usyCKQWvkQ table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-usyCKQWvkQ table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-usyCKQWvkQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-usyCKQWvkQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-usyCKQWvkQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-usyCKQWvkQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-usyCKQWvkQ .dataTables_wrapper {
  display: block;
}
.cid-usyCKQWvkQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-usyCKQWvkQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-usyCKQWvkQ .head-item:after,
.cid-usyCKQWvkQ .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-usyCKQWvkQ .dataTables_filter {
    text-align: center;
  }
  .cid-usyCKQWvkQ .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-usyCKQWvkQ .dataTables_filter {
    text-align: center;
  }
  .cid-usyCKQWvkQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-usyCKQWvkQ table th,
  .cid-usyCKQWvkQ table td {
    padding: .75rem;
  }
}
.cid-usyCKQWvkQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usyCKQWvkQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-7p {
  /* Type valid CSS here */
}
#custom-html-7p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7p p {
  font-size: 60px;
  color: #777;
}
#custom-html-7d {
  /* Type valid CSS here */
}
#custom-html-7d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7d p {
  font-size: 60px;
  color: #777;
}
#custom-html-7c {
  /* Type valid CSS here */
}
#custom-html-7c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7c p {
  font-size: 60px;
  color: #777;
}
#custom-html-76 {
  /* Type valid CSS here */
}
#custom-html-76 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-76 p {
  font-size: 60px;
  color: #777;
}
#custom-html-75 {
  /* Type valid CSS here */
}
#custom-html-75 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-75 p {
  font-size: 60px;
  color: #777;
}
#custom-html-7a {
  /* Type valid CSS here */
}
#custom-html-7a div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7a p {
  font-size: 60px;
  color: #777;
}
#custom-html-7b {
  /* Type valid CSS here */
}
#custom-html-7b div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7b p {
  font-size: 60px;
  color: #777;
}
.cid-tZvDUY2ufS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tZvDUY2ufS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tZvDUY2ufS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tZvDUY2ufS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tZvDUY2ufS .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tZvDUY2ufS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZvDUY2ufS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tZvDUY2ufS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tZvDUY2ufS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tZvDUY2ufS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tZvDUY2ufS .media-container-row .row-copirayt p {
  width: 100%;
}
#custom-html-77 {
  /* Type valid CSS here */
}
#custom-html-77 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-77 p {
  font-size: 60px;
  color: #777;
}
#custom-html-78 {
  /* Type valid CSS here */
}
#custom-html-78 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-78 p {
  font-size: 60px;
  color: #777;
}
#custom-html-79 {
  /* Type valid CSS here */
}
#custom-html-79 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-79 p {
  font-size: 60px;
  color: #777;
}
#custom-html-7e {
  /* Type valid CSS here */
}
#custom-html-7e div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7e p {
  font-size: 60px;
  color: #777;
}
#custom-html-7f {
  /* Type valid CSS here */
}
#custom-html-7f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7f p {
  font-size: 60px;
  color: #777;
}
#custom-html-7g {
  /* Type valid CSS here */
}
#custom-html-7g div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7g p {
  font-size: 60px;
  color: #777;
}
#custom-html-7h {
  /* Type valid CSS here */
}
#custom-html-7h div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7h p {
  font-size: 60px;
  color: #777;
}
#custom-html-7i {
  /* Type valid CSS here */
}
#custom-html-7i div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7i p {
  font-size: 60px;
  color: #777;
}
#custom-html-7j {
  /* Type valid CSS here */
}
#custom-html-7j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7j p {
  font-size: 60px;
  color: #777;
}
#custom-html-7k {
  /* Type valid CSS here */
}
#custom-html-7k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7k p {
  font-size: 60px;
  color: #777;
}
#custom-html-7l {
  /* Type valid CSS here */
}
#custom-html-7l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7l p {
  font-size: 60px;
  color: #777;
}
#custom-html-7m {
  /* Type valid CSS here */
}
#custom-html-7m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7m p {
  font-size: 60px;
  color: #777;
}
#custom-html-7n {
  /* Type valid CSS here */
}
#custom-html-7n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7n p {
  font-size: 60px;
  color: #777;
}
