body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.9rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.84rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.92rem;
    font-size: calc( 2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #ff9900 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #ff00d2 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff9900 !important;
  border-color: #ff9900 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b36b00 !important;
  border-color: #b36b00 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b36b00 !important;
  border-color: #b36b00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #7e7e7e !important;
  border-color: #7e7e7e !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #585858 !important;
  border-color: #585858 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #585858 !important;
  border-color: #585858 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b30093 !important;
  border-color: #b30093 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b30093 !important;
  border-color: #b30093 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #995c00;
  color: #995c00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff9900;
  border-color: #ff9900;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9900 !important;
  border-color: #ff9900 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #4b4b4b;
  color: #4b4b4b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #7e7e7e;
  border-color: #7e7e7e;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7e7e7e !important;
  border-color: #7e7e7e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #99007e;
  color: #99007e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ff00d2;
  border-color: #ff00d2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff9900 !important;
}
.text-secondary {
  color: #7e7e7e !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #ff00d2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #995c00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #4b4b4b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ff00d2 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #ff00d2;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff9900;
  border-color: #ff9900;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9900;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffebcc;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffccf6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff9900;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9900;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff9900;
  border-bottom-color: #ff9900;
}
.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: #ff9900 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #7e7e7e !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff9900' %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;
}
hr {
  border: none;
  background-color: #ff00d2;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #ff00d2;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #ff00d2;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #ff00d2;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #ff00d2 !important;
}
.btn-danger:hover {
  color: #ff00d2 !important;
}
.btn-warning:hover {
  color: #879a9f !important;
}
.btn-success:hover {
  color: #f7ed4a !important;
}
.btn-info:hover {
  color: #82786e !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #7e7e7e !important;
}
.btn-primary:hover {
  color: #ff9900 !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #ff00d2 !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #ff00d2;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #7e7e7e !important;
}
.btn-success-outline:hover::before {
  background-color: #f7ed4a !important;
}
.btn-info-outline:hover::before {
  background-color: #82786e !important;
}
.btn-primary-outline:hover::before {
  background-color: #ff9900 !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #879a9f !important;
}
.btn-danger-outline:hover::before {
  background-color: #ff00d2 !important;
}
.cid-rR8qj3Lr1I .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rR8qj3Lr1I .nav-item:focus,
.cid-rR8qj3Lr1I .nav-link:focus {
  outline: none;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rR8qj3Lr1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-rR8qj3Lr1I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rR8qj3Lr1I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rR8qj3Lr1I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rR8qj3Lr1I .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-rR8qj3Lr1I .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-rR8qj3Lr1I .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-rR8qj3Lr1I .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rR8qj3Lr1I .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rR8qj3Lr1I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rR8qj3Lr1I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rR8qj3Lr1I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rR8qj3Lr1I .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-rR8qj3Lr1I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rR8qj3Lr1I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rR8qj3Lr1I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rR8qj3Lr1I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rR8qj3Lr1I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rR8qj3Lr1I .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-rR8qj3Lr1I .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rR8qj3Lr1I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rR8qj3Lr1I .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rR8qj3Lr1I .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rR8qj3Lr1I .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rR8qj3Lr1I .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rR8qj3Lr1I .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-rR8qj3Lr1I .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rR8qj3Lr1I .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rR8qj3Lr1I .navbar-short {
  padding: 1rem 0 !important;
}
.cid-rR8qj3Lr1I .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rR8qj3Lr1I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rR8qj3Lr1I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rR8qj3Lr1I .dropdown-item.active,
.cid-rR8qj3Lr1I .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-rR8qj3Lr1I .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-rR8qj3Lr1I .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-rR8qj3Lr1I .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-rR8qj3Lr1I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-rR8qj3Lr1I .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-rR8qj3Lr1I .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-rR8qj3Lr1I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-rR8qj3Lr1I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rR8qj3Lr1I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rR8qj3Lr1I ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rR8qj3Lr1I .navbar-buttons {
  text-align: center;
}
.cid-rR8qj3Lr1I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rR8qj3Lr1I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rR8qj3Lr1I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rR8qj3Lr1I .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-rR8qj3Lr1I a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-rR8qj3Lr1I .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-rR8qj3Lr1I .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rR8qj3Lr1I .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rR8qj3Lr1I .navbar {
    height: 77px;
  }
  .cid-rR8qj3Lr1I .navbar.opened {
    height: auto;
  }
  .cid-rR8qj3Lr1I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rR8qj3Lr1I a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-rR8qj3Lr1I a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-rR8qj3Lr1I .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-rR8qj3Lr1I .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-typxospRib {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-typxospRib .carousel {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .cid-typxospRib .carousel {
    height: 100vh;
  }
}
.cid-typxospRib .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-typxospRib .carousel-item,
.cid-typxospRib .carousel-inner {
  height: 100%;
}
.cid-typxospRib .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-typxospRib .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-typxospRib .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-typxospRib .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-typxospRib .mbr-section-btn {
  margin-top: 42px;
}
.cid-typxospRib .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-typxospRib .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-typxospRib .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-typxospRib .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-typxospRib .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-typxospRib .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-typxospRib .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-typxospRib .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-typxospRib .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-typxospRib .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-typxospRib .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-typxospRib .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-typxospRib .carousel-control {
    display: none !important;
  }
}
.cid-typxospRib .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-typxospRib .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-typxospRib .carousel-indicators li.active,
.cid-typxospRib .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-typxospRib .carousel-indicators li::after,
.cid-typxospRib .carousel-indicators li::before {
  content: none;
}
.cid-typxospRib .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-typxospRib .carousel-indicators {
    display: none !important;
  }
}
.cid-typxospRib .mbr-section-text,
.cid-typxospRib .mbr-section-btn {
  text-align: center;
}
.cid-ujmwGHGXhO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ujmwGHGXhO .item-img {
  position: relative;
}
.cid-ujmwGHGXhO .item-img img {
  transition: all 0.2s;
}
.cid-ujmwGHGXhO .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ujmwGHGXhO .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ujmwGHGXhO .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ujmwGHGXhO .item:hover img {
  transform: scale(1.05);
}
.cid-ujmwGHGXhO .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ujmwGHGXhO .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ujmwGHGXhO .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ujmwGHGXhO .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ujmwGHGXhO .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ujmwGHGXhO .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-ujmwGHGXhO .link-icon-wrapper .icon-wrap {
  background: #fcad09;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-ujmwGHGXhO .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ujmwGHGXhO .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ujmwGHGXhO .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ujmwGHGXhO .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ujmwGHGXhO .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ujmwGHGXhO .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-ujmwGHGXhO .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ujmwGHGXhO img,
.cid-ujmwGHGXhO .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ujmwGHGXhO .item:focus,
.cid-ujmwGHGXhO span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ujmwGHGXhO .item {
    margin-bottom: 1rem;
  }
}
.cid-ujmwGHGXhO .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ujmwGHGXhO .item-title {
  text-align: left;
  color: #535353;
}
.cid-ujmwGHGXhO .item-subtitle {
  text-align: left;
  color: #073b4c;
}
.cid-ujmwGHGXhO .mbr-section-subtitle,
.cid-ujmwGHGXhO .subtitle-wrap,
.cid-ujmwGHGXhO .mbr-section-btn {
  text-align: left;
}
.cid-ujmwGHGXhO .mbr-text,
.cid-ujmwGHGXhO .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ujsewGFGEa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ujsewGFGEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujsewGFGEa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujsewGFGEa .row {
  align-items: stretch;
  column-gap: 7vw;
  row-gap: 30px;
  flex-direction: row-reverse;
}
.cid-ujsewGFGEa .mbr-section-head {
  margin-bottom: 80px;
}
@media (max-width: 1399px) {
  .cid-ujsewGFGEa .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ujsewGFGEa .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ujsewGFGEa .mbr-section-title {
  color: #e3ebf3;
  text-align: center;
}
.cid-ujsewGFGEa .mbr-section-subtitle {
  margin-top: 30px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-ujsewGFGEa .mbr-section-subtitle {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-ujsewGFGEa .mbr-section-subtitle {
    margin-top: 20px;
  }
}
.cid-ujsewGFGEa .col-img {
  width: 57%;
}
@media (max-width: 1199px) {
  .cid-ujsewGFGEa .col-img {
    order: 1;
    width: 100%;
  }
}
.cid-ujsewGFGEa .image-wrapper {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-ujsewGFGEa .image-wrapper {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujsewGFGEa .image-wrapper {
    border-radius: 12px;
  }
}
.cid-ujsewGFGEa .image-wrapper img {
  width: 100%;
  aspect-ratio: 1.163;
  object-fit: cover;
}
.cid-ujsewGFGEa .image-wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 30px solid rgba(0, 0, 0, 0.35);
  border-radius: 60px;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .cid-ujsewGFGEa .image-wrapper:after {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujsewGFGEa .image-wrapper:after {
    border-width: 20px;
    border-radius: 12px;
  }
}
.cid-ujsewGFGEa .col-text {
  display: flex;
  align-items: flex-start;
  width: 1%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-ujsewGFGEa .col-text {
    order: 2;
  }
}
.cid-ujsewGFGEa .card-title {
  color: #fccab7;
}
.cid-ujsewGFGEa .mbr-text {
  margin-top: 40px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-ujsewGFGEa .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-ujsewGFGEa .mbr-text {
    margin-top: 12px;
  }
}
.cid-ujsewGFGEa .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ujsewGFGEa .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ujsewGFGEa .mbr-section-btn .btn {
  min-width: 260px;
  min-height: 60px;
}
.cid-ujsewGFGEa .mbr-text,
.cid-ujsewGFGEa .mbr-section-btn {
  color: #fccab7;
}
.cid-ujtgOmEMaZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ujtgOmEMaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujtgOmEMaZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujtgOmEMaZ .row {
  align-items: stretch;
  column-gap: 7vw;
  row-gap: 30px;
}
.cid-ujtgOmEMaZ .col-img {
  width: 57%;
}
@media (max-width: 1199px) {
  .cid-ujtgOmEMaZ .col-img {
    width: 100%;
  }
}
.cid-ujtgOmEMaZ .image-wrapper {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-ujtgOmEMaZ .image-wrapper {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujtgOmEMaZ .image-wrapper {
    border-radius: 12px;
  }
}
.cid-ujtgOmEMaZ .image-wrapper img {
  width: 100%;
  aspect-ratio: 1.163;
  object-fit: cover;
}
.cid-ujtgOmEMaZ .image-wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 30px solid rgba(0, 0, 0, 0.35);
  border-radius: 60px;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .cid-ujtgOmEMaZ .image-wrapper:after {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujtgOmEMaZ .image-wrapper:after {
    border-width: 20px;
    border-radius: 12px;
  }
}
.cid-ujtgOmEMaZ .col-text {
  display: flex;
  align-items: center;
  width: 1%;
  flex-grow: 1;
}
.cid-ujtgOmEMaZ .card-title {
  color: #9bd3ae;
}
.cid-ujtgOmEMaZ .mbr-text {
  margin-top: 40px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-ujtgOmEMaZ .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-ujtgOmEMaZ .mbr-text {
    margin-top: 12px;
  }
}
.cid-ujtgOmEMaZ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ujtgOmEMaZ .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ujtgOmEMaZ .mbr-text,
.cid-ujtgOmEMaZ .mbr-section-btn {
  color: #9bd3ae;
}
.cid-ujtgQpwZpP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ujtgQpwZpP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujtgQpwZpP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujtgQpwZpP .row {
  align-items: stretch;
  column-gap: 7vw;
  row-gap: 30px;
}
.cid-ujtgQpwZpP .col-img {
  width: 57%;
}
@media (max-width: 1199px) {
  .cid-ujtgQpwZpP .col-img {
    width: 100%;
  }
}
.cid-ujtgQpwZpP .image-wrapper {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-ujtgQpwZpP .image-wrapper {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujtgQpwZpP .image-wrapper {
    border-radius: 12px;
  }
}
.cid-ujtgQpwZpP .image-wrapper img {
  width: 100%;
  aspect-ratio: 1.163;
  object-fit: cover;
}
.cid-ujtgQpwZpP .image-wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 30px solid rgba(0, 0, 0, 0.35);
  border-radius: 60px;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .cid-ujtgQpwZpP .image-wrapper:after {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujtgQpwZpP .image-wrapper:after {
    border-width: 20px;
    border-radius: 12px;
  }
}
.cid-ujtgQpwZpP .col-text {
  display: flex;
  align-items: center;
  width: 1%;
  flex-grow: 1;
}
.cid-ujtgQpwZpP .card-title {
  color: #fef388;
}
.cid-ujtgQpwZpP .mbr-text {
  margin-top: 40px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-ujtgQpwZpP .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-ujtgQpwZpP .mbr-text {
    margin-top: 12px;
  }
}
.cid-ujtgQpwZpP .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ujtgQpwZpP .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ujtgQpwZpP .mbr-text,
.cid-ujtgQpwZpP .mbr-section-btn {
  color: #fef388;
}
.cid-ujtgRFbWlh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ujtgRFbWlh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujtgRFbWlh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujtgRFbWlh .row {
  align-items: stretch;
  column-gap: 7vw;
  row-gap: 30px;
}
.cid-ujtgRFbWlh .col-img {
  width: 57%;
}
@media (max-width: 1199px) {
  .cid-ujtgRFbWlh .col-img {
    width: 100%;
  }
}
.cid-ujtgRFbWlh .image-wrapper {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-ujtgRFbWlh .image-wrapper {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujtgRFbWlh .image-wrapper {
    border-radius: 12px;
  }
}
.cid-ujtgRFbWlh .image-wrapper img {
  width: 100%;
  aspect-ratio: 1.163;
  object-fit: cover;
}
.cid-ujtgRFbWlh .image-wrapper:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 30px solid rgba(0, 0, 0, 0.35);
  border-radius: 60px;
  pointer-events: none;
}
@media (max-width: 1399px) {
  .cid-ujtgRFbWlh .image-wrapper:after {
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .cid-ujtgRFbWlh .image-wrapper:after {
    border-width: 20px;
    border-radius: 12px;
  }
}
.cid-ujtgRFbWlh .col-text {
  display: flex;
  align-items: center;
  width: 1%;
  flex-grow: 1;
}
.cid-ujtgRFbWlh .card-title {
  color: #fdbe68;
}
.cid-ujtgRFbWlh .mbr-text {
  margin-top: 40px;
  color: #6c7a88;
}
@media (max-width: 1399px) {
  .cid-ujtgRFbWlh .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-ujtgRFbWlh .mbr-text {
    margin-top: 12px;
  }
}
.cid-ujtgRFbWlh .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ujtgRFbWlh .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ujtgRFbWlh .mbr-text,
.cid-ujtgRFbWlh .mbr-section-btn {
  color: #fdbe68;
}
.cid-u3uGS6vfxC {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u3uGS6vfxC h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u3uGS6vfxC .container {
    position: relative;
  }
  .cid-u3uGS6vfxC .row {
    margin: 0;
  }
  .cid-u3uGS6vfxC h2 {
    margin: 0;
  }
}
.cid-u3uGS6vfxC .mbr-section-subtitle {
  color: #e9204f;
}
.cid-u3uGS6vfxC .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
}
.cid-u3uGS6vfxC h2 {
  text-align: left;
  color: #777777;
}
.cid-ujmz7I7HaJ {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #1f2732;
}
.cid-ujmz7I7HaJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-ujmz7I7HaJ .item {
    padding: 1.5rem;
  }
}
.cid-ujmz7I7HaJ img {
  border-radius: 2rem;
}
.cid-ujmz7I7HaJ .item-img {
  padding: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-ujmz7I7HaJ .item-img {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-ujmz7I7HaJ img,
.cid-ujmz7I7HaJ .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ujmz7I7HaJ .item:focus,
.cid-ujmz7I7HaJ span:focus {
  outline: none;
}
.cid-ujmz7I7HaJ .item-wrapper {
  position: relative;
  border-radius: 3rem;
  background: #eff0ff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .cid-ujmz7I7HaJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujmz7I7HaJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujmz7I7HaJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujmz7I7HaJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujmz7I7HaJ .item-wrapper:hover {
  box-shadow: 0 0 40px 0 lightgray;
  transform: scale(1.02);
}
.cid-ujmz7I7HaJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujmz7I7HaJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ujmz7I7HaJ .mbr-text,
.cid-ujmz7I7HaJ .mbr-section-btn {
  text-align: center;
}
.cid-ujmz7I7HaJ .item-title {
  text-align: center;
  color: #535353;
}
.cid-ujmz7I7HaJ .item-subtitle {
  text-align: left;
}
.cid-ujmz7I7HaJ .mbr-section-subtitle {
  color: #ff00d2;
  text-align: center;
}
.cid-rRBNpvhxoS {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #06192f;
}
.cid-rRBNpvhxoS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rRBNpvhxoS textarea {
  min-height: 150px;
}
.cid-rRBNpvhxoS input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-rRBNpvhxoS textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-rRBNpvhxoS .form-control,
.cid-rRBNpvhxoS .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-rRBNpvhxoS .form-control input::-webkit-input-placeholder,
.cid-rRBNpvhxoS .field-input input::-webkit-input-placeholder,
.cid-rRBNpvhxoS .form-control textarea::-webkit-input-placeholder,
.cid-rRBNpvhxoS .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-rRBNpvhxoS .form-control input:-moz-placeholder,
.cid-rRBNpvhxoS .field-input input:-moz-placeholder,
.cid-rRBNpvhxoS .form-control textarea:-moz-placeholder,
.cid-rRBNpvhxoS .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-rRBNpvhxoS .jq-number__spin:hover,
.cid-rRBNpvhxoS .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rRBNpvhxoS .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rRBNpvhxoS .jq-selectbox li,
.cid-rRBNpvhxoS .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-rRBNpvhxoS .jq-selectbox li:hover,
.cid-rRBNpvhxoS .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-rRBNpvhxoS .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rRBNpvhxoS .jq-number__spin.minus:hover:after,
.cid-rRBNpvhxoS .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-rRBNpvhxoS .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rRBNpvhxoS .jq-number__spin.minus:after,
.cid-rRBNpvhxoS .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-rRBNpvhxoS .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-rRBNpvhxoS .social-list {
    margin-bottom: 3rem;
  }
  .cid-rRBNpvhxoS .email-input {
    margin-top: 2rem;
  }
}
.cid-rRBNpvhxoS .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-rRBNpvhxoS .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-rRBNpvhxoS .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-rRBNpvhxoS .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-rRBNpvhxoS .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-rRBNpvhxoS .social-list {
  display: flex;
}
.cid-rRBNpvhxoS .social-list a {
  transition: .3s;
}
.cid-rRBNpvhxoS .social-list a:hover {
  transform: translateY(-8px);
}
.cid-rRBNpvhxoS .row {
  align-items: center;
}
.cid-rRBNpvhxoS .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-rRBNpvhxoS .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-rRBNpvhxoS .form-btn {
  margin-top: 2.5rem;
}
.cid-rRBNpvhxoS input::-webkit-input-placeholder,
.cid-rRBNpvhxoS textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-rRBNpvhxoS input:-moz-placeholder,
.cid-rRBNpvhxoS textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-rRBNpvhxoS .media-content {
    padding-right: 3rem;
  }
  .cid-rRBNpvhxoS .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBNpvhxoS .row {
    padding: 0 1rem;
  }
}
.cid-rRBNpvhxoS .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-rRBNpvhxoS .form-btn {
    width: 100%;
  }
  .cid-rRBNpvhxoS .btn {
    width: 100%;
  }
}
.cid-ty1T3828H4 .google-map {
  height: 34rem;
  position: relative;
}
.cid-ty1T3828H4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ty1T3828H4 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ty1T3828H4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ty1T3828H4 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3IM5pdVTC {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3IM5pdVTC .image-block {
  margin: auto;
}
.cid-u3IM5pdVTC .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IM5pdVTC .image-block {
    width: 100% !important;
  }
}
.cid-u3IM5pdVTC .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3IM5pdVTC .container {
    padding: 0 2rem;
  }
}
.cid-rRBNq1QjUI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rRBNq1QjUI .media-container-row {
  align-items: center;
}
.cid-rRBNq1QjUI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rRBNq1QjUI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rRBNq1QjUI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rRBNq1QjUI .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-rRBNq1QjUI .foot-menu-item {
  transform: 0.2s;
}
.cid-rRBNq1QjUI .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-rRBNq1QjUI .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNq1QjUI .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-rRBNq1QjUI .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-rRBNq1QjUI .foot-menu {
    justify-content: center;
  }
  .cid-rRBNq1QjUI .mbr-text {
    text-align: center;
  }
  .cid-rRBNq1QjUI .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-rRBNq1QjUI .foot-menu {
    justify-content: flex-end;
  }
}
.cid-rRBNq1QjUI .link:hover {
  color: #ffffff;
}
.cid-u3y0KuUnGV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3y0KuUnGV .nav-item:focus,
.cid-u3y0KuUnGV .nav-link:focus {
  outline: none;
}
.cid-u3y0KuUnGV .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-u3y0KuUnGV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3y0KuUnGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u3y0KuUnGV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3y0KuUnGV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3y0KuUnGV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3y0KuUnGV .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u3y0KuUnGV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-u3y0KuUnGV .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-u3y0KuUnGV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u3y0KuUnGV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3y0KuUnGV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3y0KuUnGV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3y0KuUnGV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u3y0KuUnGV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u3y0KuUnGV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3y0KuUnGV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3y0KuUnGV .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-u3y0KuUnGV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3y0KuUnGV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u3y0KuUnGV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u3y0KuUnGV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3y0KuUnGV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3y0KuUnGV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u3y0KuUnGV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3y0KuUnGV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3y0KuUnGV .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-u3y0KuUnGV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u3y0KuUnGV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3y0KuUnGV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3y0KuUnGV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u3y0KuUnGV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3y0KuUnGV .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u3y0KuUnGV .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u3y0KuUnGV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u3y0KuUnGV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u3y0KuUnGV .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u3y0KuUnGV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3y0KuUnGV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3y0KuUnGV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3y0KuUnGV .dropdown-item.active,
.cid-u3y0KuUnGV .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3y0KuUnGV .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u3y0KuUnGV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3y0KuUnGV .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u3y0KuUnGV .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u3y0KuUnGV .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u3y0KuUnGV .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u3y0KuUnGV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3y0KuUnGV .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-u3y0KuUnGV .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u3y0KuUnGV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-u3y0KuUnGV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3y0KuUnGV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3y0KuUnGV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3y0KuUnGV .navbar-buttons {
  text-align: center;
}
.cid-u3y0KuUnGV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3y0KuUnGV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3y0KuUnGV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u3y0KuUnGV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u3y0KuUnGV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u3y0KuUnGV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u3y0KuUnGV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3y0KuUnGV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u3y0KuUnGV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u3y0KuUnGV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3y0KuUnGV .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u3y0KuUnGV a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u3y0KuUnGV .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u3y0KuUnGV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u3y0KuUnGV .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3y0KuUnGV .navbar {
    height: 77px;
  }
  .cid-u3y0KuUnGV .navbar.opened {
    height: auto;
  }
  .cid-u3y0KuUnGV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3y0KuUnGV a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u3y0KuUnGV a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-u3y0KuUnGV .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u3y0KuUnGV .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u3y0KvR2qB {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-u3y0KvR2qB .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-u3y0KvR2qB .carousel {
    height: 100vh;
  }
}
.cid-u3y0KvR2qB .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3y0KvR2qB .carousel-item,
.cid-u3y0KvR2qB .carousel-inner {
  height: 100%;
}
.cid-u3y0KvR2qB .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u3y0KvR2qB .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-u3y0KvR2qB .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-u3y0KvR2qB .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-u3y0KvR2qB .mbr-section-btn {
  margin-top: 42px;
}
.cid-u3y0KvR2qB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3y0KvR2qB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3y0KvR2qB .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-u3y0KvR2qB .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-u3y0KvR2qB .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3y0KvR2qB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3y0KvR2qB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3y0KvR2qB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3y0KvR2qB .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-u3y0KvR2qB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3y0KvR2qB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3y0KvR2qB .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-u3y0KvR2qB .carousel-control {
    display: none !important;
  }
}
.cid-u3y0KvR2qB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-u3y0KvR2qB .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-u3y0KvR2qB .carousel-indicators li.active,
.cid-u3y0KvR2qB .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-u3y0KvR2qB .carousel-indicators li::after,
.cid-u3y0KvR2qB .carousel-indicators li::before {
  content: none;
}
.cid-u3y0KvR2qB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3y0KvR2qB .carousel-indicators {
    display: none !important;
  }
}
.cid-u3y0KvR2qB .mbr-section-text,
.cid-u3y0KvR2qB .mbr-section-btn {
  text-align: center;
}
.cid-u3y3acomqK {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-u3y3acomqK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3y3acomqK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3y3acomqK p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-u3y3acomqK .card-wrapper {
    text-align: center;
  }
}
.cid-u3y3acomqK .mbr-section-title {
  text-align: left;
}
.cid-u3y0KzdBHL .google-map {
  height: 34rem;
  position: relative;
}
.cid-u3y0KzdBHL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3y0KzdBHL .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3y0KzdBHL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3y0KzdBHL .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3y0KyGjd0 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-u3y0KyGjd0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3y0KyGjd0 textarea {
  min-height: 150px;
}
.cid-u3y0KyGjd0 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-u3y0KyGjd0 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-u3y0KyGjd0 .form-control,
.cid-u3y0KyGjd0 .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-u3y0KyGjd0 .form-control input::-webkit-input-placeholder,
.cid-u3y0KyGjd0 .field-input input::-webkit-input-placeholder,
.cid-u3y0KyGjd0 .form-control textarea::-webkit-input-placeholder,
.cid-u3y0KyGjd0 .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3y0KyGjd0 .form-control input:-moz-placeholder,
.cid-u3y0KyGjd0 .field-input input:-moz-placeholder,
.cid-u3y0KyGjd0 .form-control textarea:-moz-placeholder,
.cid-u3y0KyGjd0 .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-u3y0KyGjd0 .jq-number__spin:hover,
.cid-u3y0KyGjd0 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u3y0KyGjd0 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3y0KyGjd0 .jq-selectbox li,
.cid-u3y0KyGjd0 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3y0KyGjd0 .jq-selectbox li:hover,
.cid-u3y0KyGjd0 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3y0KyGjd0 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3y0KyGjd0 .jq-number__spin.minus:hover:after,
.cid-u3y0KyGjd0 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-u3y0KyGjd0 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3y0KyGjd0 .jq-number__spin.minus:after,
.cid-u3y0KyGjd0 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-u3y0KyGjd0 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-u3y0KyGjd0 .social-list {
    margin-bottom: 3rem;
  }
  .cid-u3y0KyGjd0 .email-input {
    margin-top: 2rem;
  }
}
.cid-u3y0KyGjd0 .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-u3y0KyGjd0 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-u3y0KyGjd0 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-u3y0KyGjd0 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-u3y0KyGjd0 .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-u3y0KyGjd0 .social-list {
  display: flex;
}
.cid-u3y0KyGjd0 .social-list a {
  transition: .3s;
}
.cid-u3y0KyGjd0 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-u3y0KyGjd0 .row {
  align-items: center;
}
.cid-u3y0KyGjd0 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-u3y0KyGjd0 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-u3y0KyGjd0 .form-btn {
  margin-top: 2.5rem;
}
.cid-u3y0KyGjd0 input::-webkit-input-placeholder,
.cid-u3y0KyGjd0 textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3y0KyGjd0 input:-moz-placeholder,
.cid-u3y0KyGjd0 textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-u3y0KyGjd0 .media-content {
    padding-right: 3rem;
  }
  .cid-u3y0KyGjd0 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-u3y0KyGjd0 .row {
    padding: 0 1rem;
  }
}
.cid-u3y0KyGjd0 .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-u3y0KyGjd0 .form-btn {
    width: 100%;
  }
  .cid-u3y0KyGjd0 .btn {
    width: 100%;
  }
}
.cid-u3INIrlKoS {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3INIrlKoS .image-block {
  margin: auto;
}
.cid-u3INIrlKoS .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3INIrlKoS .image-block {
    width: 100% !important;
  }
}
.cid-u3INIrlKoS .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3INIrlKoS .container {
    padding: 0 2rem;
  }
}
.cid-u3y0KzvZWF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u3y0KzvZWF .media-container-row {
  align-items: center;
}
.cid-u3y0KzvZWF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3y0KzvZWF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3y0KzvZWF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3y0KzvZWF .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u3y0KzvZWF .foot-menu-item {
  transform: 0.2s;
}
.cid-u3y0KzvZWF .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-u3y0KzvZWF .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u3y0KzvZWF .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-u3y0KzvZWF .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-u3y0KzvZWF .foot-menu {
    justify-content: center;
  }
  .cid-u3y0KzvZWF .mbr-text {
    text-align: center;
  }
  .cid-u3y0KzvZWF .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3y0KzvZWF .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u3y0KzvZWF .link:hover {
  color: #ffffff;
}
.cid-u3IlLjzjeF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3IlLjzjeF .nav-item:focus,
.cid-u3IlLjzjeF .nav-link:focus {
  outline: none;
}
.cid-u3IlLjzjeF .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-u3IlLjzjeF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3IlLjzjeF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u3IlLjzjeF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3IlLjzjeF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3IlLjzjeF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3IlLjzjeF .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u3IlLjzjeF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-u3IlLjzjeF .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-u3IlLjzjeF .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u3IlLjzjeF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3IlLjzjeF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3IlLjzjeF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3IlLjzjeF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u3IlLjzjeF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u3IlLjzjeF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3IlLjzjeF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3IlLjzjeF .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-u3IlLjzjeF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3IlLjzjeF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u3IlLjzjeF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u3IlLjzjeF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3IlLjzjeF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3IlLjzjeF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u3IlLjzjeF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3IlLjzjeF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3IlLjzjeF .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-u3IlLjzjeF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u3IlLjzjeF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3IlLjzjeF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3IlLjzjeF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u3IlLjzjeF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3IlLjzjeF .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u3IlLjzjeF .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u3IlLjzjeF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u3IlLjzjeF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u3IlLjzjeF .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u3IlLjzjeF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3IlLjzjeF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3IlLjzjeF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3IlLjzjeF .dropdown-item.active,
.cid-u3IlLjzjeF .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3IlLjzjeF .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u3IlLjzjeF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3IlLjzjeF .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u3IlLjzjeF .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u3IlLjzjeF .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u3IlLjzjeF .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u3IlLjzjeF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3IlLjzjeF .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-u3IlLjzjeF .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u3IlLjzjeF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-u3IlLjzjeF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3IlLjzjeF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3IlLjzjeF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3IlLjzjeF .navbar-buttons {
  text-align: center;
}
.cid-u3IlLjzjeF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3IlLjzjeF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3IlLjzjeF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u3IlLjzjeF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u3IlLjzjeF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u3IlLjzjeF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u3IlLjzjeF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3IlLjzjeF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u3IlLjzjeF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u3IlLjzjeF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3IlLjzjeF .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u3IlLjzjeF a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u3IlLjzjeF .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u3IlLjzjeF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u3IlLjzjeF .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3IlLjzjeF .navbar {
    height: 77px;
  }
  .cid-u3IlLjzjeF .navbar.opened {
    height: auto;
  }
  .cid-u3IlLjzjeF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3IlLjzjeF a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u3IlLjzjeF a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-u3IlLjzjeF .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u3IlLjzjeF .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u3IlLkhqyL {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-u3IlLkhqyL .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-u3IlLkhqyL .carousel {
    height: 100vh;
  }
}
.cid-u3IlLkhqyL .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3IlLkhqyL .carousel-item,
.cid-u3IlLkhqyL .carousel-inner {
  height: 100%;
}
.cid-u3IlLkhqyL .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u3IlLkhqyL .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-u3IlLkhqyL .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-u3IlLkhqyL .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-u3IlLkhqyL .mbr-section-btn {
  margin-top: 42px;
}
.cid-u3IlLkhqyL .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3IlLkhqyL .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3IlLkhqyL .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-u3IlLkhqyL .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-u3IlLkhqyL .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IlLkhqyL .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3IlLkhqyL .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3IlLkhqyL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3IlLkhqyL .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-u3IlLkhqyL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3IlLkhqyL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3IlLkhqyL .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-u3IlLkhqyL .carousel-control {
    display: none !important;
  }
}
.cid-u3IlLkhqyL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-u3IlLkhqyL .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-u3IlLkhqyL .carousel-indicators li.active,
.cid-u3IlLkhqyL .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-u3IlLkhqyL .carousel-indicators li::after,
.cid-u3IlLkhqyL .carousel-indicators li::before {
  content: none;
}
.cid-u3IlLkhqyL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3IlLkhqyL .carousel-indicators {
    display: none !important;
  }
}
.cid-u3IlLkhqyL .mbr-section-text,
.cid-u3IlLkhqyL .mbr-section-btn {
  text-align: center;
}
.cid-u3IlLkTUag {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-u3IlLkTUag .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3IlLkTUag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3IlLkTUag p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-u3IlLkTUag .card-wrapper {
    text-align: center;
  }
}
.cid-u3IlLkTUag .mbr-section-title {
  text-align: left;
}
.cid-u3IlLlvWkh .google-map {
  height: 34rem;
  position: relative;
}
.cid-u3IlLlvWkh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3IlLlvWkh .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3IlLlvWkh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3IlLlvWkh .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3IlLlRYoV {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-u3IlLlRYoV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3IlLlRYoV textarea {
  min-height: 150px;
}
.cid-u3IlLlRYoV input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-u3IlLlRYoV textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-u3IlLlRYoV .form-control,
.cid-u3IlLlRYoV .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-u3IlLlRYoV .form-control input::-webkit-input-placeholder,
.cid-u3IlLlRYoV .field-input input::-webkit-input-placeholder,
.cid-u3IlLlRYoV .form-control textarea::-webkit-input-placeholder,
.cid-u3IlLlRYoV .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3IlLlRYoV .form-control input:-moz-placeholder,
.cid-u3IlLlRYoV .field-input input:-moz-placeholder,
.cid-u3IlLlRYoV .form-control textarea:-moz-placeholder,
.cid-u3IlLlRYoV .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-u3IlLlRYoV .jq-number__spin:hover,
.cid-u3IlLlRYoV .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u3IlLlRYoV .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3IlLlRYoV .jq-selectbox li,
.cid-u3IlLlRYoV .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3IlLlRYoV .jq-selectbox li:hover,
.cid-u3IlLlRYoV .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3IlLlRYoV .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3IlLlRYoV .jq-number__spin.minus:hover:after,
.cid-u3IlLlRYoV .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-u3IlLlRYoV .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3IlLlRYoV .jq-number__spin.minus:after,
.cid-u3IlLlRYoV .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-u3IlLlRYoV .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-u3IlLlRYoV .social-list {
    margin-bottom: 3rem;
  }
  .cid-u3IlLlRYoV .email-input {
    margin-top: 2rem;
  }
}
.cid-u3IlLlRYoV .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-u3IlLlRYoV .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-u3IlLlRYoV .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-u3IlLlRYoV .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-u3IlLlRYoV .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-u3IlLlRYoV .social-list {
  display: flex;
}
.cid-u3IlLlRYoV .social-list a {
  transition: .3s;
}
.cid-u3IlLlRYoV .social-list a:hover {
  transform: translateY(-8px);
}
.cid-u3IlLlRYoV .row {
  align-items: center;
}
.cid-u3IlLlRYoV .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-u3IlLlRYoV .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-u3IlLlRYoV .form-btn {
  margin-top: 2.5rem;
}
.cid-u3IlLlRYoV input::-webkit-input-placeholder,
.cid-u3IlLlRYoV textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3IlLlRYoV input:-moz-placeholder,
.cid-u3IlLlRYoV textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-u3IlLlRYoV .media-content {
    padding-right: 3rem;
  }
  .cid-u3IlLlRYoV .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-u3IlLlRYoV .row {
    padding: 0 1rem;
  }
}
.cid-u3IlLlRYoV .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-u3IlLlRYoV .form-btn {
    width: 100%;
  }
  .cid-u3IlLlRYoV .btn {
    width: 100%;
  }
}
.cid-u3INXVcYIH {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3INXVcYIH .image-block {
  margin: auto;
}
.cid-u3INXVcYIH .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3INXVcYIH .image-block {
    width: 100% !important;
  }
}
.cid-u3INXVcYIH .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3INXVcYIH .container {
    padding: 0 2rem;
  }
}
.cid-u3IlLmpKvT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u3IlLmpKvT .media-container-row {
  align-items: center;
}
.cid-u3IlLmpKvT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3IlLmpKvT .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3IlLmpKvT .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3IlLmpKvT .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u3IlLmpKvT .foot-menu-item {
  transform: 0.2s;
}
.cid-u3IlLmpKvT .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-u3IlLmpKvT .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u3IlLmpKvT .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-u3IlLmpKvT .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-u3IlLmpKvT .foot-menu {
    justify-content: center;
  }
  .cid-u3IlLmpKvT .mbr-text {
    text-align: center;
  }
  .cid-u3IlLmpKvT .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3IlLmpKvT .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u3IlLmpKvT .link:hover {
  color: #ffffff;
}
.cid-u3IqxroEfd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3IqxroEfd .nav-item:focus,
.cid-u3IqxroEfd .nav-link:focus {
  outline: none;
}
.cid-u3IqxroEfd .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-u3IqxroEfd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3IqxroEfd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u3IqxroEfd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3IqxroEfd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3IqxroEfd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3IqxroEfd .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u3IqxroEfd .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-u3IqxroEfd .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-u3IqxroEfd .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u3IqxroEfd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3IqxroEfd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3IqxroEfd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3IqxroEfd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u3IqxroEfd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u3IqxroEfd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3IqxroEfd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3IqxroEfd .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-u3IqxroEfd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3IqxroEfd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u3IqxroEfd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u3IqxroEfd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3IqxroEfd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3IqxroEfd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u3IqxroEfd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3IqxroEfd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3IqxroEfd .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-u3IqxroEfd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u3IqxroEfd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3IqxroEfd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3IqxroEfd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u3IqxroEfd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3IqxroEfd .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u3IqxroEfd .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u3IqxroEfd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u3IqxroEfd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u3IqxroEfd .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u3IqxroEfd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3IqxroEfd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3IqxroEfd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3IqxroEfd .dropdown-item.active,
.cid-u3IqxroEfd .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3IqxroEfd .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u3IqxroEfd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3IqxroEfd .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u3IqxroEfd .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u3IqxroEfd .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u3IqxroEfd .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u3IqxroEfd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3IqxroEfd .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-u3IqxroEfd .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u3IqxroEfd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-u3IqxroEfd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3IqxroEfd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3IqxroEfd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3IqxroEfd .navbar-buttons {
  text-align: center;
}
.cid-u3IqxroEfd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3IqxroEfd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3IqxroEfd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u3IqxroEfd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u3IqxroEfd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u3IqxroEfd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u3IqxroEfd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3IqxroEfd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u3IqxroEfd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u3IqxroEfd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3IqxroEfd .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u3IqxroEfd a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u3IqxroEfd .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u3IqxroEfd .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u3IqxroEfd .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3IqxroEfd .navbar {
    height: 77px;
  }
  .cid-u3IqxroEfd .navbar.opened {
    height: auto;
  }
  .cid-u3IqxroEfd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3IqxroEfd a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u3IqxroEfd a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-u3IqxroEfd .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u3IqxroEfd .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u3Iqxs3MFD {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-u3Iqxs3MFD .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-u3Iqxs3MFD .carousel {
    height: 100vh;
  }
}
.cid-u3Iqxs3MFD .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3Iqxs3MFD .carousel-item,
.cid-u3Iqxs3MFD .carousel-inner {
  height: 100%;
}
.cid-u3Iqxs3MFD .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u3Iqxs3MFD .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-u3Iqxs3MFD .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-u3Iqxs3MFD .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-u3Iqxs3MFD .mbr-section-btn {
  margin-top: 42px;
}
.cid-u3Iqxs3MFD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3Iqxs3MFD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3Iqxs3MFD .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-u3Iqxs3MFD .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-u3Iqxs3MFD .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3Iqxs3MFD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3Iqxs3MFD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3Iqxs3MFD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3Iqxs3MFD .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-u3Iqxs3MFD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3Iqxs3MFD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3Iqxs3MFD .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-u3Iqxs3MFD .carousel-control {
    display: none !important;
  }
}
.cid-u3Iqxs3MFD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-u3Iqxs3MFD .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-u3Iqxs3MFD .carousel-indicators li.active,
.cid-u3Iqxs3MFD .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-u3Iqxs3MFD .carousel-indicators li::after,
.cid-u3Iqxs3MFD .carousel-indicators li::before {
  content: none;
}
.cid-u3Iqxs3MFD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3Iqxs3MFD .carousel-indicators {
    display: none !important;
  }
}
.cid-u3Iqxs3MFD .mbr-section-text,
.cid-u3Iqxs3MFD .mbr-section-btn {
  text-align: center;
}
.cid-u3IqxsLJDb {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-u3IqxsLJDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3IqxsLJDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3IqxsLJDb p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-u3IqxsLJDb .card-wrapper {
    text-align: center;
  }
}
.cid-u3IqxsLJDb .mbr-section-title {
  text-align: left;
}
.cid-u3Iqxti1sY .google-map {
  height: 34rem;
  position: relative;
}
.cid-u3Iqxti1sY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3Iqxti1sY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3Iqxti1sY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3Iqxti1sY .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3Iqxtw008 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-u3Iqxtw008 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3Iqxtw008 textarea {
  min-height: 150px;
}
.cid-u3Iqxtw008 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-u3Iqxtw008 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-u3Iqxtw008 .form-control,
.cid-u3Iqxtw008 .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-u3Iqxtw008 .form-control input::-webkit-input-placeholder,
.cid-u3Iqxtw008 .field-input input::-webkit-input-placeholder,
.cid-u3Iqxtw008 .form-control textarea::-webkit-input-placeholder,
.cid-u3Iqxtw008 .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3Iqxtw008 .form-control input:-moz-placeholder,
.cid-u3Iqxtw008 .field-input input:-moz-placeholder,
.cid-u3Iqxtw008 .form-control textarea:-moz-placeholder,
.cid-u3Iqxtw008 .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-u3Iqxtw008 .jq-number__spin:hover,
.cid-u3Iqxtw008 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u3Iqxtw008 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3Iqxtw008 .jq-selectbox li,
.cid-u3Iqxtw008 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3Iqxtw008 .jq-selectbox li:hover,
.cid-u3Iqxtw008 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3Iqxtw008 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3Iqxtw008 .jq-number__spin.minus:hover:after,
.cid-u3Iqxtw008 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-u3Iqxtw008 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3Iqxtw008 .jq-number__spin.minus:after,
.cid-u3Iqxtw008 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-u3Iqxtw008 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-u3Iqxtw008 .social-list {
    margin-bottom: 3rem;
  }
  .cid-u3Iqxtw008 .email-input {
    margin-top: 2rem;
  }
}
.cid-u3Iqxtw008 .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-u3Iqxtw008 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-u3Iqxtw008 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-u3Iqxtw008 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-u3Iqxtw008 .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-u3Iqxtw008 .social-list {
  display: flex;
}
.cid-u3Iqxtw008 .social-list a {
  transition: .3s;
}
.cid-u3Iqxtw008 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-u3Iqxtw008 .row {
  align-items: center;
}
.cid-u3Iqxtw008 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-u3Iqxtw008 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-u3Iqxtw008 .form-btn {
  margin-top: 2.5rem;
}
.cid-u3Iqxtw008 input::-webkit-input-placeholder,
.cid-u3Iqxtw008 textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3Iqxtw008 input:-moz-placeholder,
.cid-u3Iqxtw008 textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-u3Iqxtw008 .media-content {
    padding-right: 3rem;
  }
  .cid-u3Iqxtw008 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-u3Iqxtw008 .row {
    padding: 0 1rem;
  }
}
.cid-u3Iqxtw008 .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-u3Iqxtw008 .form-btn {
    width: 100%;
  }
  .cid-u3Iqxtw008 .btn {
    width: 100%;
  }
}
.cid-u3IO1nyF3G {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3IO1nyF3G .image-block {
  margin: auto;
}
.cid-u3IO1nyF3G .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IO1nyF3G .image-block {
    width: 100% !important;
  }
}
.cid-u3IO1nyF3G .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3IO1nyF3G .container {
    padding: 0 2rem;
  }
}
.cid-u3Iqxu2CWP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u3Iqxu2CWP .media-container-row {
  align-items: center;
}
.cid-u3Iqxu2CWP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3Iqxu2CWP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3Iqxu2CWP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3Iqxu2CWP .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u3Iqxu2CWP .foot-menu-item {
  transform: 0.2s;
}
.cid-u3Iqxu2CWP .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-u3Iqxu2CWP .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u3Iqxu2CWP .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-u3Iqxu2CWP .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-u3Iqxu2CWP .foot-menu {
    justify-content: center;
  }
  .cid-u3Iqxu2CWP .mbr-text {
    text-align: center;
  }
  .cid-u3Iqxu2CWP .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3Iqxu2CWP .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u3Iqxu2CWP .link:hover {
  color: #ffffff;
}
.cid-u3Isanxawy .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3Isanxawy .nav-item:focus,
.cid-u3Isanxawy .nav-link:focus {
  outline: none;
}
.cid-u3Isanxawy .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-u3Isanxawy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3Isanxawy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u3Isanxawy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3Isanxawy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3Isanxawy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3Isanxawy .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u3Isanxawy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-u3Isanxawy .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-u3Isanxawy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u3Isanxawy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3Isanxawy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3Isanxawy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3Isanxawy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u3Isanxawy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u3Isanxawy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3Isanxawy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3Isanxawy .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-u3Isanxawy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3Isanxawy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u3Isanxawy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u3Isanxawy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3Isanxawy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3Isanxawy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u3Isanxawy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3Isanxawy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3Isanxawy .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-u3Isanxawy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u3Isanxawy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3Isanxawy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3Isanxawy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u3Isanxawy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3Isanxawy .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u3Isanxawy .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u3Isanxawy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u3Isanxawy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u3Isanxawy .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u3Isanxawy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3Isanxawy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3Isanxawy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3Isanxawy .dropdown-item.active,
.cid-u3Isanxawy .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3Isanxawy .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u3Isanxawy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3Isanxawy .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u3Isanxawy .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u3Isanxawy .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u3Isanxawy .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u3Isanxawy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3Isanxawy .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-u3Isanxawy .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u3Isanxawy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-u3Isanxawy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3Isanxawy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3Isanxawy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3Isanxawy .navbar-buttons {
  text-align: center;
}
.cid-u3Isanxawy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3Isanxawy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3Isanxawy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u3Isanxawy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u3Isanxawy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u3Isanxawy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u3Isanxawy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3Isanxawy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u3Isanxawy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u3Isanxawy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3Isanxawy .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u3Isanxawy a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u3Isanxawy .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u3Isanxawy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u3Isanxawy .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3Isanxawy .navbar {
    height: 77px;
  }
  .cid-u3Isanxawy .navbar.opened {
    height: auto;
  }
  .cid-u3Isanxawy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3Isanxawy a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u3Isanxawy a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-u3Isanxawy .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u3Isanxawy .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u3IsaonbVF {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-u3IsaonbVF .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-u3IsaonbVF .carousel {
    height: 100vh;
  }
}
.cid-u3IsaonbVF .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3IsaonbVF .carousel-item,
.cid-u3IsaonbVF .carousel-inner {
  height: 100%;
}
.cid-u3IsaonbVF .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u3IsaonbVF .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-u3IsaonbVF .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-u3IsaonbVF .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-u3IsaonbVF .mbr-section-btn {
  margin-top: 42px;
}
.cid-u3IsaonbVF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3IsaonbVF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3IsaonbVF .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-u3IsaonbVF .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-u3IsaonbVF .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IsaonbVF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3IsaonbVF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3IsaonbVF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3IsaonbVF .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-u3IsaonbVF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3IsaonbVF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3IsaonbVF .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-u3IsaonbVF .carousel-control {
    display: none !important;
  }
}
.cid-u3IsaonbVF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-u3IsaonbVF .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-u3IsaonbVF .carousel-indicators li.active,
.cid-u3IsaonbVF .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-u3IsaonbVF .carousel-indicators li::after,
.cid-u3IsaonbVF .carousel-indicators li::before {
  content: none;
}
.cid-u3IsaonbVF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3IsaonbVF .carousel-indicators {
    display: none !important;
  }
}
.cid-u3IsaonbVF .mbr-section-text,
.cid-u3IsaonbVF .mbr-section-btn {
  text-align: center;
}
.cid-u3Isap42t7 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-u3Isap42t7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3Isap42t7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3Isap42t7 p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-u3Isap42t7 .card-wrapper {
    text-align: center;
  }
}
.cid-u3Isap42t7 .mbr-section-title {
  text-align: left;
}
.cid-u3IsapHFMa .google-map {
  height: 34rem;
  position: relative;
}
.cid-u3IsapHFMa .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3IsapHFMa .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3IsapHFMa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3IsapHFMa .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3IsapXxDj {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-u3IsapXxDj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3IsapXxDj textarea {
  min-height: 150px;
}
.cid-u3IsapXxDj input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-u3IsapXxDj textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-u3IsapXxDj .form-control,
.cid-u3IsapXxDj .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-u3IsapXxDj .form-control input::-webkit-input-placeholder,
.cid-u3IsapXxDj .field-input input::-webkit-input-placeholder,
.cid-u3IsapXxDj .form-control textarea::-webkit-input-placeholder,
.cid-u3IsapXxDj .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3IsapXxDj .form-control input:-moz-placeholder,
.cid-u3IsapXxDj .field-input input:-moz-placeholder,
.cid-u3IsapXxDj .form-control textarea:-moz-placeholder,
.cid-u3IsapXxDj .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-u3IsapXxDj .jq-number__spin:hover,
.cid-u3IsapXxDj .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u3IsapXxDj .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3IsapXxDj .jq-selectbox li,
.cid-u3IsapXxDj .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3IsapXxDj .jq-selectbox li:hover,
.cid-u3IsapXxDj .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3IsapXxDj .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3IsapXxDj .jq-number__spin.minus:hover:after,
.cid-u3IsapXxDj .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-u3IsapXxDj .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3IsapXxDj .jq-number__spin.minus:after,
.cid-u3IsapXxDj .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-u3IsapXxDj .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-u3IsapXxDj .social-list {
    margin-bottom: 3rem;
  }
  .cid-u3IsapXxDj .email-input {
    margin-top: 2rem;
  }
}
.cid-u3IsapXxDj .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-u3IsapXxDj .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-u3IsapXxDj .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-u3IsapXxDj .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-u3IsapXxDj .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-u3IsapXxDj .social-list {
  display: flex;
}
.cid-u3IsapXxDj .social-list a {
  transition: .3s;
}
.cid-u3IsapXxDj .social-list a:hover {
  transform: translateY(-8px);
}
.cid-u3IsapXxDj .row {
  align-items: center;
}
.cid-u3IsapXxDj .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-u3IsapXxDj .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-u3IsapXxDj .form-btn {
  margin-top: 2.5rem;
}
.cid-u3IsapXxDj input::-webkit-input-placeholder,
.cid-u3IsapXxDj textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3IsapXxDj input:-moz-placeholder,
.cid-u3IsapXxDj textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-u3IsapXxDj .media-content {
    padding-right: 3rem;
  }
  .cid-u3IsapXxDj .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-u3IsapXxDj .row {
    padding: 0 1rem;
  }
}
.cid-u3IsapXxDj .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-u3IsapXxDj .form-btn {
    width: 100%;
  }
  .cid-u3IsapXxDj .btn {
    width: 100%;
  }
}
.cid-u3IO4YN2GG {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3IO4YN2GG .image-block {
  margin: auto;
}
.cid-u3IO4YN2GG .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IO4YN2GG .image-block {
    width: 100% !important;
  }
}
.cid-u3IO4YN2GG .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3IO4YN2GG .container {
    padding: 0 2rem;
  }
}
.cid-u3IsaqxNQr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u3IsaqxNQr .media-container-row {
  align-items: center;
}
.cid-u3IsaqxNQr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3IsaqxNQr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3IsaqxNQr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3IsaqxNQr .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u3IsaqxNQr .foot-menu-item {
  transform: 0.2s;
}
.cid-u3IsaqxNQr .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-u3IsaqxNQr .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u3IsaqxNQr .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-u3IsaqxNQr .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-u3IsaqxNQr .foot-menu {
    justify-content: center;
  }
  .cid-u3IsaqxNQr .mbr-text {
    text-align: center;
  }
  .cid-u3IsaqxNQr .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3IsaqxNQr .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u3IsaqxNQr .link:hover {
  color: #ffffff;
}
.cid-u3ItnAzSlO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3ItnAzSlO .nav-item:focus,
.cid-u3ItnAzSlO .nav-link:focus {
  outline: none;
}
.cid-u3ItnAzSlO .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-u3ItnAzSlO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3ItnAzSlO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u3ItnAzSlO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3ItnAzSlO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3ItnAzSlO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3ItnAzSlO .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u3ItnAzSlO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-u3ItnAzSlO .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-u3ItnAzSlO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u3ItnAzSlO .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3ItnAzSlO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3ItnAzSlO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3ItnAzSlO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u3ItnAzSlO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u3ItnAzSlO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3ItnAzSlO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3ItnAzSlO .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-u3ItnAzSlO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3ItnAzSlO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u3ItnAzSlO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u3ItnAzSlO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3ItnAzSlO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3ItnAzSlO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u3ItnAzSlO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3ItnAzSlO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3ItnAzSlO .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-u3ItnAzSlO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u3ItnAzSlO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3ItnAzSlO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3ItnAzSlO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u3ItnAzSlO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3ItnAzSlO .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u3ItnAzSlO .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u3ItnAzSlO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u3ItnAzSlO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u3ItnAzSlO .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u3ItnAzSlO .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3ItnAzSlO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3ItnAzSlO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3ItnAzSlO .dropdown-item.active,
.cid-u3ItnAzSlO .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3ItnAzSlO .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u3ItnAzSlO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3ItnAzSlO .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u3ItnAzSlO .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u3ItnAzSlO .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u3ItnAzSlO .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u3ItnAzSlO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3ItnAzSlO .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-u3ItnAzSlO .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u3ItnAzSlO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-u3ItnAzSlO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3ItnAzSlO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3ItnAzSlO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3ItnAzSlO .navbar-buttons {
  text-align: center;
}
.cid-u3ItnAzSlO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3ItnAzSlO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3ItnAzSlO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u3ItnAzSlO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u3ItnAzSlO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u3ItnAzSlO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u3ItnAzSlO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3ItnAzSlO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u3ItnAzSlO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u3ItnAzSlO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3ItnAzSlO .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u3ItnAzSlO a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u3ItnAzSlO .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u3ItnAzSlO .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u3ItnAzSlO .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3ItnAzSlO .navbar {
    height: 77px;
  }
  .cid-u3ItnAzSlO .navbar.opened {
    height: auto;
  }
  .cid-u3ItnAzSlO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3ItnAzSlO a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u3ItnAzSlO a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-u3ItnAzSlO .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u3ItnAzSlO .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u3ItnBoML5 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-u3ItnBoML5 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-u3ItnBoML5 .carousel {
    height: 100vh;
  }
}
.cid-u3ItnBoML5 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3ItnBoML5 .carousel-item,
.cid-u3ItnBoML5 .carousel-inner {
  height: 100%;
}
.cid-u3ItnBoML5 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u3ItnBoML5 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-u3ItnBoML5 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-u3ItnBoML5 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-u3ItnBoML5 .mbr-section-btn {
  margin-top: 42px;
}
.cid-u3ItnBoML5 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3ItnBoML5 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3ItnBoML5 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-u3ItnBoML5 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-u3ItnBoML5 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3ItnBoML5 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3ItnBoML5 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3ItnBoML5 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3ItnBoML5 .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-u3ItnBoML5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3ItnBoML5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3ItnBoML5 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-u3ItnBoML5 .carousel-control {
    display: none !important;
  }
}
.cid-u3ItnBoML5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-u3ItnBoML5 .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-u3ItnBoML5 .carousel-indicators li.active,
.cid-u3ItnBoML5 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-u3ItnBoML5 .carousel-indicators li::after,
.cid-u3ItnBoML5 .carousel-indicators li::before {
  content: none;
}
.cid-u3ItnBoML5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3ItnBoML5 .carousel-indicators {
    display: none !important;
  }
}
.cid-u3ItnBoML5 .mbr-section-text,
.cid-u3ItnBoML5 .mbr-section-btn {
  text-align: center;
}
.cid-u3ItnC0RiO {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-u3ItnC0RiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3ItnC0RiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3ItnC0RiO p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-u3ItnC0RiO .card-wrapper {
    text-align: center;
  }
}
.cid-u3ItnC0RiO .mbr-section-title {
  text-align: left;
}
.cid-u3ItnCGhVa .google-map {
  height: 34rem;
  position: relative;
}
.cid-u3ItnCGhVa .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3ItnCGhVa .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3ItnCGhVa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3ItnCGhVa .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3ItnD30rR {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-u3ItnD30rR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3ItnD30rR textarea {
  min-height: 150px;
}
.cid-u3ItnD30rR input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-u3ItnD30rR textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-u3ItnD30rR .form-control,
.cid-u3ItnD30rR .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-u3ItnD30rR .form-control input::-webkit-input-placeholder,
.cid-u3ItnD30rR .field-input input::-webkit-input-placeholder,
.cid-u3ItnD30rR .form-control textarea::-webkit-input-placeholder,
.cid-u3ItnD30rR .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3ItnD30rR .form-control input:-moz-placeholder,
.cid-u3ItnD30rR .field-input input:-moz-placeholder,
.cid-u3ItnD30rR .form-control textarea:-moz-placeholder,
.cid-u3ItnD30rR .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-u3ItnD30rR .jq-number__spin:hover,
.cid-u3ItnD30rR .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u3ItnD30rR .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3ItnD30rR .jq-selectbox li,
.cid-u3ItnD30rR .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3ItnD30rR .jq-selectbox li:hover,
.cid-u3ItnD30rR .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3ItnD30rR .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3ItnD30rR .jq-number__spin.minus:hover:after,
.cid-u3ItnD30rR .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-u3ItnD30rR .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3ItnD30rR .jq-number__spin.minus:after,
.cid-u3ItnD30rR .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-u3ItnD30rR .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-u3ItnD30rR .social-list {
    margin-bottom: 3rem;
  }
  .cid-u3ItnD30rR .email-input {
    margin-top: 2rem;
  }
}
.cid-u3ItnD30rR .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-u3ItnD30rR .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-u3ItnD30rR .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-u3ItnD30rR .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-u3ItnD30rR .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-u3ItnD30rR .social-list {
  display: flex;
}
.cid-u3ItnD30rR .social-list a {
  transition: .3s;
}
.cid-u3ItnD30rR .social-list a:hover {
  transform: translateY(-8px);
}
.cid-u3ItnD30rR .row {
  align-items: center;
}
.cid-u3ItnD30rR .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-u3ItnD30rR .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-u3ItnD30rR .form-btn {
  margin-top: 2.5rem;
}
.cid-u3ItnD30rR input::-webkit-input-placeholder,
.cid-u3ItnD30rR textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3ItnD30rR input:-moz-placeholder,
.cid-u3ItnD30rR textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-u3ItnD30rR .media-content {
    padding-right: 3rem;
  }
  .cid-u3ItnD30rR .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-u3ItnD30rR .row {
    padding: 0 1rem;
  }
}
.cid-u3ItnD30rR .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-u3ItnD30rR .form-btn {
    width: 100%;
  }
  .cid-u3ItnD30rR .btn {
    width: 100%;
  }
}
.cid-u3IO7y1vUm {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3IO7y1vUm .image-block {
  margin: auto;
}
.cid-u3IO7y1vUm .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IO7y1vUm .image-block {
    width: 100% !important;
  }
}
.cid-u3IO7y1vUm .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3IO7y1vUm .container {
    padding: 0 2rem;
  }
}
.cid-u3ItnDC5mV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u3ItnDC5mV .media-container-row {
  align-items: center;
}
.cid-u3ItnDC5mV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3ItnDC5mV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3ItnDC5mV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3ItnDC5mV .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u3ItnDC5mV .foot-menu-item {
  transform: 0.2s;
}
.cid-u3ItnDC5mV .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-u3ItnDC5mV .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u3ItnDC5mV .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-u3ItnDC5mV .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-u3ItnDC5mV .foot-menu {
    justify-content: center;
  }
  .cid-u3ItnDC5mV .mbr-text {
    text-align: center;
  }
  .cid-u3ItnDC5mV .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3ItnDC5mV .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u3ItnDC5mV .link:hover {
  color: #ffffff;
}
.cid-u3Iu8zWUhY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3Iu8zWUhY .nav-item:focus,
.cid-u3Iu8zWUhY .nav-link:focus {
  outline: none;
}
.cid-u3Iu8zWUhY .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-u3Iu8zWUhY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3Iu8zWUhY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u3Iu8zWUhY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u3Iu8zWUhY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3Iu8zWUhY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3Iu8zWUhY .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u3Iu8zWUhY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-u3Iu8zWUhY .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-u3Iu8zWUhY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u3Iu8zWUhY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3Iu8zWUhY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3Iu8zWUhY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3Iu8zWUhY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u3Iu8zWUhY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u3Iu8zWUhY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3Iu8zWUhY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3Iu8zWUhY .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-u3Iu8zWUhY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3Iu8zWUhY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u3Iu8zWUhY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u3Iu8zWUhY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3Iu8zWUhY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3Iu8zWUhY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u3Iu8zWUhY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3Iu8zWUhY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3Iu8zWUhY .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-u3Iu8zWUhY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u3Iu8zWUhY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3Iu8zWUhY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3Iu8zWUhY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u3Iu8zWUhY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u3Iu8zWUhY .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u3Iu8zWUhY .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u3Iu8zWUhY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u3Iu8zWUhY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u3Iu8zWUhY .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u3Iu8zWUhY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3Iu8zWUhY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3Iu8zWUhY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3Iu8zWUhY .dropdown-item.active,
.cid-u3Iu8zWUhY .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u3Iu8zWUhY .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u3Iu8zWUhY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3Iu8zWUhY .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u3Iu8zWUhY .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u3Iu8zWUhY .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u3Iu8zWUhY .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u3Iu8zWUhY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u3Iu8zWUhY .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-u3Iu8zWUhY .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u3Iu8zWUhY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-u3Iu8zWUhY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3Iu8zWUhY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3Iu8zWUhY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3Iu8zWUhY .navbar-buttons {
  text-align: center;
}
.cid-u3Iu8zWUhY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u3Iu8zWUhY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3Iu8zWUhY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u3Iu8zWUhY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u3Iu8zWUhY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u3Iu8zWUhY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u3Iu8zWUhY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3Iu8zWUhY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u3Iu8zWUhY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u3Iu8zWUhY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u3Iu8zWUhY .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u3Iu8zWUhY a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u3Iu8zWUhY .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u3Iu8zWUhY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u3Iu8zWUhY .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3Iu8zWUhY .navbar {
    height: 77px;
  }
  .cid-u3Iu8zWUhY .navbar.opened {
    height: auto;
  }
  .cid-u3Iu8zWUhY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3Iu8zWUhY a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u3Iu8zWUhY a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-u3Iu8zWUhY .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u3Iu8zWUhY .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u3Iu8AM7H1 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-u3Iu8AM7H1 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-u3Iu8AM7H1 .carousel {
    height: 100vh;
  }
}
.cid-u3Iu8AM7H1 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3Iu8AM7H1 .carousel-item,
.cid-u3Iu8AM7H1 .carousel-inner {
  height: 100%;
}
.cid-u3Iu8AM7H1 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u3Iu8AM7H1 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-u3Iu8AM7H1 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-u3Iu8AM7H1 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-u3Iu8AM7H1 .mbr-section-btn {
  margin-top: 42px;
}
.cid-u3Iu8AM7H1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3Iu8AM7H1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3Iu8AM7H1 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-u3Iu8AM7H1 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-u3Iu8AM7H1 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3Iu8AM7H1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3Iu8AM7H1 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3Iu8AM7H1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3Iu8AM7H1 .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-u3Iu8AM7H1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3Iu8AM7H1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-u3Iu8AM7H1 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-u3Iu8AM7H1 .carousel-control {
    display: none !important;
  }
}
.cid-u3Iu8AM7H1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-u3Iu8AM7H1 .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-u3Iu8AM7H1 .carousel-indicators li.active,
.cid-u3Iu8AM7H1 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-u3Iu8AM7H1 .carousel-indicators li::after,
.cid-u3Iu8AM7H1 .carousel-indicators li::before {
  content: none;
}
.cid-u3Iu8AM7H1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3Iu8AM7H1 .carousel-indicators {
    display: none !important;
  }
}
.cid-u3Iu8AM7H1 .mbr-section-text,
.cid-u3Iu8AM7H1 .mbr-section-btn {
  text-align: center;
}
.cid-u3Iu8BwbG6 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-u3Iu8BwbG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3Iu8BwbG6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3Iu8BwbG6 p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-u3Iu8BwbG6 .card-wrapper {
    text-align: center;
  }
}
.cid-u3Iu8BwbG6 .mbr-section-title {
  text-align: left;
}
.cid-u3Iu8C8Kjd .google-map {
  height: 34rem;
  position: relative;
}
.cid-u3Iu8C8Kjd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3Iu8C8Kjd .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3Iu8C8Kjd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3Iu8C8Kjd .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-u3Iu8CsnTh {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-u3Iu8CsnTh .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3Iu8CsnTh textarea {
  min-height: 150px;
}
.cid-u3Iu8CsnTh input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-u3Iu8CsnTh textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-u3Iu8CsnTh .form-control,
.cid-u3Iu8CsnTh .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none;
  border-bottom: 2px solid #414141;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-u3Iu8CsnTh .form-control input::-webkit-input-placeholder,
.cid-u3Iu8CsnTh .field-input input::-webkit-input-placeholder,
.cid-u3Iu8CsnTh .form-control textarea::-webkit-input-placeholder,
.cid-u3Iu8CsnTh .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3Iu8CsnTh .form-control input:-moz-placeholder,
.cid-u3Iu8CsnTh .field-input input:-moz-placeholder,
.cid-u3Iu8CsnTh .form-control textarea:-moz-placeholder,
.cid-u3Iu8CsnTh .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-u3Iu8CsnTh .jq-number__spin:hover,
.cid-u3Iu8CsnTh .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-u3Iu8CsnTh .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3Iu8CsnTh .jq-selectbox li,
.cid-u3Iu8CsnTh .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3Iu8CsnTh .jq-selectbox li:hover,
.cid-u3Iu8CsnTh .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-u3Iu8CsnTh .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3Iu8CsnTh .jq-number__spin.minus:hover:after,
.cid-u3Iu8CsnTh .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-u3Iu8CsnTh .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3Iu8CsnTh .jq-number__spin.minus:after,
.cid-u3Iu8CsnTh .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-u3Iu8CsnTh .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-u3Iu8CsnTh .social-list {
    margin-bottom: 3rem;
  }
  .cid-u3Iu8CsnTh .email-input {
    margin-top: 2rem;
  }
}
.cid-u3Iu8CsnTh .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-u3Iu8CsnTh .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-u3Iu8CsnTh .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-u3Iu8CsnTh .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-u3Iu8CsnTh .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-u3Iu8CsnTh .social-list {
  display: flex;
}
.cid-u3Iu8CsnTh .social-list a {
  transition: .3s;
}
.cid-u3Iu8CsnTh .social-list a:hover {
  transform: translateY(-8px);
}
.cid-u3Iu8CsnTh .row {
  align-items: center;
}
.cid-u3Iu8CsnTh .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-u3Iu8CsnTh .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-u3Iu8CsnTh .form-btn {
  margin-top: 2.5rem;
}
.cid-u3Iu8CsnTh input::-webkit-input-placeholder,
.cid-u3Iu8CsnTh textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-u3Iu8CsnTh input:-moz-placeholder,
.cid-u3Iu8CsnTh textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-u3Iu8CsnTh .media-content {
    padding-right: 3rem;
  }
  .cid-u3Iu8CsnTh .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-u3Iu8CsnTh .row {
    padding: 0 1rem;
  }
}
.cid-u3Iu8CsnTh .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-u3Iu8CsnTh .form-btn {
    width: 100%;
  }
  .cid-u3Iu8CsnTh .btn {
    width: 100%;
  }
}
.cid-u3IOa8yzqd {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-u3IOa8yzqd .image-block {
  margin: auto;
}
.cid-u3IOa8yzqd .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u3IOa8yzqd .image-block {
    width: 100% !important;
  }
}
.cid-u3IOa8yzqd .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-u3IOa8yzqd .container {
    padding: 0 2rem;
  }
}
.cid-u3Iu8D56SH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u3Iu8D56SH .media-container-row {
  align-items: center;
}
.cid-u3Iu8D56SH .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u3Iu8D56SH .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u3Iu8D56SH .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u3Iu8D56SH .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-u3Iu8D56SH .foot-menu-item {
  transform: 0.2s;
}
.cid-u3Iu8D56SH .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-u3Iu8D56SH .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u3Iu8D56SH .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-u3Iu8D56SH .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-u3Iu8D56SH .foot-menu {
    justify-content: center;
  }
  .cid-u3Iu8D56SH .mbr-text {
    text-align: center;
  }
  .cid-u3Iu8D56SH .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-u3Iu8D56SH .foot-menu {
    justify-content: flex-end;
  }
}
.cid-u3Iu8D56SH .link:hover {
  color: #ffffff;
}
.cid-ukAWBJeIal .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ukAWBJeIal .nav-item:focus,
.cid-ukAWBJeIal .nav-link:focus {
  outline: none;
}
.cid-ukAWBJeIal .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-ukAWBJeIal .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukAWBJeIal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ukAWBJeIal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ukAWBJeIal .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukAWBJeIal .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukAWBJeIal .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ukAWBJeIal .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ukAWBJeIal .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ukAWBJeIal .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ukAWBJeIal .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukAWBJeIal .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukAWBJeIal .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukAWBJeIal .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ukAWBJeIal .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ukAWBJeIal .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukAWBJeIal .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukAWBJeIal .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-ukAWBJeIal .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukAWBJeIal .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ukAWBJeIal .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ukAWBJeIal .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukAWBJeIal .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukAWBJeIal .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ukAWBJeIal .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukAWBJeIal .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukAWBJeIal .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-ukAWBJeIal .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ukAWBJeIal .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukAWBJeIal .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukAWBJeIal .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ukAWBJeIal .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ukAWBJeIal .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ukAWBJeIal .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ukAWBJeIal .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ukAWBJeIal .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ukAWBJeIal .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ukAWBJeIal .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukAWBJeIal .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukAWBJeIal .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukAWBJeIal .dropdown-item.active,
.cid-ukAWBJeIal .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ukAWBJeIal .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ukAWBJeIal .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ukAWBJeIal .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ukAWBJeIal .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ukAWBJeIal .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ukAWBJeIal .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ukAWBJeIal .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ukAWBJeIal .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ukAWBJeIal .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ukAWBJeIal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ukAWBJeIal .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukAWBJeIal .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukAWBJeIal ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ukAWBJeIal .navbar-buttons {
  text-align: center;
}
.cid-ukAWBJeIal button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ukAWBJeIal button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ukAWBJeIal button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ukAWBJeIal button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ukAWBJeIal button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ukAWBJeIal button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ukAWBJeIal nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ukAWBJeIal nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ukAWBJeIal nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ukAWBJeIal nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ukAWBJeIal .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ukAWBJeIal a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-ukAWBJeIal .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ukAWBJeIal .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-ukAWBJeIal .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukAWBJeIal .navbar {
    height: 77px;
  }
  .cid-ukAWBJeIal .navbar.opened {
    height: auto;
  }
  .cid-ukAWBJeIal .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukAWBJeIal a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-ukAWBJeIal a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ukAWBJeIal .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ukAWBJeIal .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ukAWBKdhJj {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ukAWBKdhJj .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ukAWBKdhJj .carousel {
    height: 100vh;
  }
}
.cid-ukAWBKdhJj .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ukAWBKdhJj .carousel-item,
.cid-ukAWBKdhJj .carousel-inner {
  height: 100%;
}
.cid-ukAWBKdhJj .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukAWBKdhJj .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ukAWBKdhJj .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ukAWBKdhJj .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ukAWBKdhJj .mbr-section-btn {
  margin-top: 42px;
}
.cid-ukAWBKdhJj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ukAWBKdhJj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ukAWBKdhJj .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ukAWBKdhJj .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ukAWBKdhJj .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ukAWBKdhJj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ukAWBKdhJj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ukAWBKdhJj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ukAWBKdhJj .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-ukAWBKdhJj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ukAWBKdhJj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ukAWBKdhJj .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ukAWBKdhJj .carousel-control {
    display: none !important;
  }
}
.cid-ukAWBKdhJj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ukAWBKdhJj .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-ukAWBKdhJj .carousel-indicators li.active,
.cid-ukAWBKdhJj .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ukAWBKdhJj .carousel-indicators li::after,
.cid-ukAWBKdhJj .carousel-indicators li::before {
  content: none;
}
.cid-ukAWBKdhJj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ukAWBKdhJj .carousel-indicators {
    display: none !important;
  }
}
.cid-ukAWBKdhJj .mbr-section-text,
.cid-ukAWBKdhJj .mbr-section-btn {
  text-align: center;
}
.cid-ukAWBKZVYT {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-ukAWBKZVYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukAWBKZVYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukAWBKZVYT p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-ukAWBKZVYT .card-wrapper {
    text-align: center;
  }
}
.cid-ukAWBKZVYT .mbr-section-title {
  text-align: left;
}
.cid-ukAWBKZVYT .mbr-section-subtitle {
  text-align: left;
}
.cid-ukAWBMw5Dm {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ukAWBMw5Dm .image-block {
  margin: auto;
}
.cid-ukAWBMw5Dm .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ukAWBMw5Dm .image-block {
    width: 100% !important;
  }
}
.cid-ukAWBMw5Dm .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ukAWBMw5Dm .container {
    padding: 0 2rem;
  }
}
.cid-ukAWBMUKFf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ukAWBMUKFf .media-container-row {
  align-items: center;
}
.cid-ukAWBMUKFf .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ukAWBMUKFf .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ukAWBMUKFf .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ukAWBMUKFf .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ukAWBMUKFf .foot-menu-item {
  transform: 0.2s;
}
.cid-ukAWBMUKFf .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ukAWBMUKFf .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-ukAWBMUKFf .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ukAWBMUKFf .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ukAWBMUKFf .foot-menu {
    justify-content: center;
  }
  .cid-ukAWBMUKFf .mbr-text {
    text-align: center;
  }
  .cid-ukAWBMUKFf .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ukAWBMUKFf .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ukAWBMUKFf .link:hover {
  color: #ffffff;
}
.cid-ukAZePgwgw .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ukAZePgwgw .nav-item:focus,
.cid-ukAZePgwgw .nav-link:focus {
  outline: none;
}
.cid-ukAZePgwgw .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-ukAZePgwgw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukAZePgwgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ukAZePgwgw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ukAZePgwgw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukAZePgwgw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukAZePgwgw .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ukAZePgwgw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ukAZePgwgw .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ukAZePgwgw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ukAZePgwgw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukAZePgwgw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukAZePgwgw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukAZePgwgw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ukAZePgwgw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ukAZePgwgw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukAZePgwgw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukAZePgwgw .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-ukAZePgwgw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukAZePgwgw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ukAZePgwgw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ukAZePgwgw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukAZePgwgw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukAZePgwgw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ukAZePgwgw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukAZePgwgw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukAZePgwgw .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-ukAZePgwgw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ukAZePgwgw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukAZePgwgw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukAZePgwgw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ukAZePgwgw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ukAZePgwgw .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ukAZePgwgw .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ukAZePgwgw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ukAZePgwgw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ukAZePgwgw .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ukAZePgwgw .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukAZePgwgw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukAZePgwgw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukAZePgwgw .dropdown-item.active,
.cid-ukAZePgwgw .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ukAZePgwgw .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ukAZePgwgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ukAZePgwgw .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ukAZePgwgw .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ukAZePgwgw .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ukAZePgwgw .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ukAZePgwgw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ukAZePgwgw .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ukAZePgwgw .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ukAZePgwgw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ukAZePgwgw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukAZePgwgw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukAZePgwgw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ukAZePgwgw .navbar-buttons {
  text-align: center;
}
.cid-ukAZePgwgw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ukAZePgwgw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ukAZePgwgw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ukAZePgwgw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ukAZePgwgw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ukAZePgwgw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ukAZePgwgw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ukAZePgwgw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ukAZePgwgw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ukAZePgwgw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ukAZePgwgw .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ukAZePgwgw a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-ukAZePgwgw .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ukAZePgwgw .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-ukAZePgwgw .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukAZePgwgw .navbar {
    height: 77px;
  }
  .cid-ukAZePgwgw .navbar.opened {
    height: auto;
  }
  .cid-ukAZePgwgw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukAZePgwgw a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-ukAZePgwgw a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ukAZePgwgw .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ukAZePgwgw .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ukAZeQcARl {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ukAZeQcARl .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ukAZeQcARl .carousel {
    height: 100vh;
  }
}
.cid-ukAZeQcARl .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ukAZeQcARl .carousel-item,
.cid-ukAZeQcARl .carousel-inner {
  height: 100%;
}
.cid-ukAZeQcARl .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukAZeQcARl .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ukAZeQcARl .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ukAZeQcARl .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ukAZeQcARl .mbr-section-btn {
  margin-top: 42px;
}
.cid-ukAZeQcARl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ukAZeQcARl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ukAZeQcARl .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ukAZeQcARl .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ukAZeQcARl .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ukAZeQcARl .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ukAZeQcARl .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ukAZeQcARl .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ukAZeQcARl .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-ukAZeQcARl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ukAZeQcARl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ukAZeQcARl .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ukAZeQcARl .carousel-control {
    display: none !important;
  }
}
.cid-ukAZeQcARl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ukAZeQcARl .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-ukAZeQcARl .carousel-indicators li.active,
.cid-ukAZeQcARl .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ukAZeQcARl .carousel-indicators li::after,
.cid-ukAZeQcARl .carousel-indicators li::before {
  content: none;
}
.cid-ukAZeQcARl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ukAZeQcARl .carousel-indicators {
    display: none !important;
  }
}
.cid-ukAZeQcARl .mbr-section-text,
.cid-ukAZeQcARl .mbr-section-btn {
  text-align: center;
}
.cid-ukAZeQTgHT {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-ukAZeQTgHT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukAZeQTgHT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukAZeQTgHT p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-ukAZeQTgHT .card-wrapper {
    text-align: center;
  }
}
.cid-ukAZeQTgHT .mbr-section-title {
  text-align: left;
}
.cid-ukAZeQTgHT .mbr-section-subtitle {
  text-align: left;
}
.cid-ukAZeREbMV {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ukAZeREbMV .image-block {
  margin: auto;
}
.cid-ukAZeREbMV .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ukAZeREbMV .image-block {
    width: 100% !important;
  }
}
.cid-ukAZeREbMV .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ukAZeREbMV .container {
    padding: 0 2rem;
  }
}
.cid-ukAZeRWfgp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ukAZeRWfgp .media-container-row {
  align-items: center;
}
.cid-ukAZeRWfgp .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ukAZeRWfgp .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ukAZeRWfgp .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ukAZeRWfgp .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ukAZeRWfgp .foot-menu-item {
  transform: 0.2s;
}
.cid-ukAZeRWfgp .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ukAZeRWfgp .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-ukAZeRWfgp .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ukAZeRWfgp .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ukAZeRWfgp .foot-menu {
    justify-content: center;
  }
  .cid-ukAZeRWfgp .mbr-text {
    text-align: center;
  }
  .cid-ukAZeRWfgp .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ukAZeRWfgp .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ukAZeRWfgp .link:hover {
  color: #ffffff;
}
.cid-ukB2yjdEbL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ukB2yjdEbL .nav-item:focus,
.cid-ukB2yjdEbL .nav-link:focus {
  outline: none;
}
.cid-ukB2yjdEbL .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-ukB2yjdEbL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukB2yjdEbL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ukB2yjdEbL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ukB2yjdEbL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukB2yjdEbL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukB2yjdEbL .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ukB2yjdEbL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ukB2yjdEbL .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ukB2yjdEbL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ukB2yjdEbL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukB2yjdEbL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukB2yjdEbL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukB2yjdEbL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ukB2yjdEbL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ukB2yjdEbL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukB2yjdEbL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukB2yjdEbL .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-ukB2yjdEbL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukB2yjdEbL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ukB2yjdEbL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ukB2yjdEbL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukB2yjdEbL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukB2yjdEbL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ukB2yjdEbL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukB2yjdEbL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukB2yjdEbL .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-ukB2yjdEbL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ukB2yjdEbL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukB2yjdEbL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukB2yjdEbL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ukB2yjdEbL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ukB2yjdEbL .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ukB2yjdEbL .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ukB2yjdEbL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ukB2yjdEbL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ukB2yjdEbL .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ukB2yjdEbL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukB2yjdEbL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukB2yjdEbL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukB2yjdEbL .dropdown-item.active,
.cid-ukB2yjdEbL .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ukB2yjdEbL .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ukB2yjdEbL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ukB2yjdEbL .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ukB2yjdEbL .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ukB2yjdEbL .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ukB2yjdEbL .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ukB2yjdEbL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ukB2yjdEbL .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ukB2yjdEbL .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ukB2yjdEbL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ukB2yjdEbL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukB2yjdEbL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukB2yjdEbL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ukB2yjdEbL .navbar-buttons {
  text-align: center;
}
.cid-ukB2yjdEbL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ukB2yjdEbL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ukB2yjdEbL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ukB2yjdEbL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ukB2yjdEbL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ukB2yjdEbL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ukB2yjdEbL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ukB2yjdEbL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ukB2yjdEbL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ukB2yjdEbL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ukB2yjdEbL .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ukB2yjdEbL a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-ukB2yjdEbL .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ukB2yjdEbL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-ukB2yjdEbL .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukB2yjdEbL .navbar {
    height: 77px;
  }
  .cid-ukB2yjdEbL .navbar.opened {
    height: auto;
  }
  .cid-ukB2yjdEbL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukB2yjdEbL a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-ukB2yjdEbL a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ukB2yjdEbL .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ukB2yjdEbL .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ukB2yjYESj {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ukB2yjYESj .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ukB2yjYESj .carousel {
    height: 100vh;
  }
}
.cid-ukB2yjYESj .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ukB2yjYESj .carousel-item,
.cid-ukB2yjYESj .carousel-inner {
  height: 100%;
}
.cid-ukB2yjYESj .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ukB2yjYESj .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ukB2yjYESj .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ukB2yjYESj .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ukB2yjYESj .mbr-section-btn {
  margin-top: 42px;
}
.cid-ukB2yjYESj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ukB2yjYESj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ukB2yjYESj .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ukB2yjYESj .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ukB2yjYESj .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ukB2yjYESj .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ukB2yjYESj .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ukB2yjYESj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ukB2yjYESj .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-ukB2yjYESj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ukB2yjYESj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ukB2yjYESj .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ukB2yjYESj .carousel-control {
    display: none !important;
  }
}
.cid-ukB2yjYESj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ukB2yjYESj .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-ukB2yjYESj .carousel-indicators li.active,
.cid-ukB2yjYESj .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ukB2yjYESj .carousel-indicators li::after,
.cid-ukB2yjYESj .carousel-indicators li::before {
  content: none;
}
.cid-ukB2yjYESj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ukB2yjYESj .carousel-indicators {
    display: none !important;
  }
}
.cid-ukB2yjYESj .mbr-section-text,
.cid-ukB2yjYESj .mbr-section-btn {
  text-align: center;
}
.cid-ukB2ykzxZI {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-ukB2ykzxZI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukB2ykzxZI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukB2ykzxZI p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cid-ukB2ykzxZI .card-wrapper {
    text-align: center;
  }
}
.cid-ukB2ykzxZI .mbr-section-title {
  text-align: left;
}
.cid-ukB2ykzxZI .mbr-section-subtitle {
  text-align: left;
}
.cid-ukB2ylvobG {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ukB2ylvobG .image-block {
  margin: auto;
}
.cid-ukB2ylvobG .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ukB2ylvobG .image-block {
    width: 100% !important;
  }
}
.cid-ukB2ylvobG .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ukB2ylvobG .container {
    padding: 0 2rem;
  }
}
.cid-ukB2ylTRDh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ukB2ylTRDh .media-container-row {
  align-items: center;
}
.cid-ukB2ylTRDh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ukB2ylTRDh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ukB2ylTRDh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ukB2ylTRDh .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ukB2ylTRDh .foot-menu-item {
  transform: 0.2s;
}
.cid-ukB2ylTRDh .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ukB2ylTRDh .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-ukB2ylTRDh .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ukB2ylTRDh .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ukB2ylTRDh .foot-menu {
    justify-content: center;
  }
  .cid-ukB2ylTRDh .mbr-text {
    text-align: center;
  }
  .cid-ukB2ylTRDh .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ukB2ylTRDh .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ukB2ylTRDh .link:hover {
  color: #ffffff;
}
