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: #fcad09 !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: #fcad09 !important;
  border-color: #fcad09 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b67c02 !important;
  border-color: #b67c02 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b67c02 !important;
  border-color: #b67c02 !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: #9d6b02;
  color: #9d6b02;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #fcad09;
  border-color: #fcad09;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fcad09 !important;
  border-color: #fcad09 !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: #fcad09 !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: #9d6b02 !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: #fcad09;
  border-color: #fcad09;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fcad09;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef0d3;
}
.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: #fcad09;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fcad09;
  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: #fcad09;
  border-bottom-color: #fcad09;
}
.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: #fcad09 !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='%23fcad09' %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: #fcad09 !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: #fcad09 !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-u3xCvW4ixx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u3xCvW4ixx .item-img,
.cid-u3xCvW4ixx .img-wrap,
.cid-u3xCvW4ixx img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-u3xCvW4ixx img,
.cid-u3xCvW4ixx .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-u3xCvW4ixx img,
  .cid-u3xCvW4ixx .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-u3xCvW4ixx .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-u3xCvW4ixx .item:focus,
.cid-u3xCvW4ixx span:focus {
  outline: none;
}
.cid-u3xCvW4ixx .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-u3xCvW4ixx .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u3xCvW4ixx .item {
    margin-bottom: 1rem;
  }
}
.cid-u3xCvW4ixx h5 {
  margin: 0;
}
.cid-u3xCvW4ixx .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-u3xCvW4ixx .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-u3xCvW4ixx .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-u3xCvW4ixx .item-wrapper:hover .item-img {
  border: 1px solid lightgray;
}
.cid-u3xCvW4ixx .item-wrapper:hover .img-wrap {
  margin: 10px;
}
@media (max-width: 992px) {
  .cid-u3xCvW4ixx .item-wrapper {
    height: auto;
  }
}
.cid-u3xCvW4ixx .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-u3xCvW4ixx .item-title {
  text-align: left;
  color: #7e7e7e;
}
.cid-u3xCvW4ixx .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-u3xCvW4ixx .mbr-text,
.cid-u3xCvW4ixx .item .mbr-section-btn {
  text-align: center;
}
.cid-u3xCvW4ixx .mbr-section-subtitle,
.cid-u3xCvW4ixx .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-u3uGS6vfxC {
  padding-top: 60px;
  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-ujE62UBKWs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1f2732;
}
.cid-ujE62UBKWs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-ujE62UBKWs .item {
    padding: 1.5rem;
  }
}
.cid-ujE62UBKWs img {
  border-radius: 2rem;
}
.cid-ujE62UBKWs .item-img {
  padding: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-ujE62UBKWs .item-img {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.cid-ujE62UBKWs img,
.cid-ujE62UBKWs .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ujE62UBKWs .item:focus,
.cid-ujE62UBKWs span:focus {
  outline: none;
}
.cid-ujE62UBKWs .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-ujE62UBKWs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujE62UBKWs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujE62UBKWs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujE62UBKWs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujE62UBKWs .item-wrapper:hover {
  box-shadow: 0 0 40px 0 lightgray;
  transform: scale(1.02);
}
.cid-ujE62UBKWs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujE62UBKWs .mbr-section-title {
  color: #ffffff;
}
.cid-ujE62UBKWs .mbr-text,
.cid-ujE62UBKWs .mbr-section-btn {
  text-align: center;
}
.cid-ujE62UBKWs .item-title {
  text-align: center;
  color: #535353;
}
.cid-ujE62UBKWs .item-subtitle {
  text-align: left;
}
.cid-ujE62UBKWs .mbr-section-subtitle {
  color: #ff00d2;
}
.cid-rRBNpvhxoS {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.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-ujEOcSOC3V {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ujEOcSOC3V .image-block {
  margin: auto;
}
.cid-ujEOcSOC3V .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ujEOcSOC3V .image-block {
    width: 100% !important;
  }
}
.cid-ujEOcSOC3V .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ujEOcSOC3V .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-rRBNq1QjUI .media-container-row .mbr-text {
  text-align: center;
}
.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-uk1hqoE70o {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uk1hqoE70o .image-block {
  margin: auto;
}
.cid-uk1hqoE70o .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uk1hqoE70o .image-block {
    width: 100% !important;
  }
}
.cid-uk1hqoE70o .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uk1hqoE70o .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-u3Iqxu2CWP .media-container-row .mbr-text {
  text-align: center;
}
.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-uKZXWrttKk {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZXWrttKk h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZXWrttKk .container {
    position: relative;
  }
  .cid-uKZXWrttKk .row {
    margin: 0;
  }
  .cid-uKZXWrttKk h2 {
    margin: 0;
  }
}
.cid-uKZXWrttKk .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZXWrttKk .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZXWrttKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZXWrttKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulTew1A1rE {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulTew1A1rE .item-img {
  position: relative;
}
.cid-ulTew1A1rE .item-img img {
  transition: all 0.2s;
}
.cid-ulTew1A1rE .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulTew1A1rE .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulTew1A1rE .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulTew1A1rE .item:hover img {
  transform: scale(1.05);
}
.cid-ulTew1A1rE .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulTew1A1rE .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulTew1A1rE .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulTew1A1rE .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulTew1A1rE .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulTew1A1rE .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-ulTew1A1rE .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-ulTew1A1rE .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulTew1A1rE .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulTew1A1rE .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulTew1A1rE .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulTew1A1rE .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulTew1A1rE .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-ulTew1A1rE .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulTew1A1rE img,
.cid-ulTew1A1rE .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulTew1A1rE .item:focus,
.cid-ulTew1A1rE span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulTew1A1rE .item {
    margin-bottom: 1rem;
  }
}
.cid-ulTew1A1rE .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulTew1A1rE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulTew1A1rE .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulTew1A1rE .mbr-section-subtitle,
.cid-ulTew1A1rE .subtitle-wrap,
.cid-ulTew1A1rE .mbr-section-btn {
  text-align: left;
}
.cid-ulTew1A1rE .mbr-text,
.cid-ulTew1A1rE .item .mbr-section-btn {
  color: #ffffff;
}
.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-uk1g6hBK6G {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uk1g6hBK6G .image-block {
  margin: auto;
}
.cid-uk1g6hBK6G .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uk1g6hBK6G .image-block {
    width: 100% !important;
  }
}
.cid-uk1g6hBK6G .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uk1g6hBK6G .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-u3y0KzvZWF .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulTsC7GHsJ .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-ulTsC7GHsJ .nav-item:focus,
.cid-ulTsC7GHsJ .nav-link:focus {
  outline: none;
}
.cid-ulTsC7GHsJ .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-ulTsC7GHsJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulTsC7GHsJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulTsC7GHsJ .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-ulTsC7GHsJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulTsC7GHsJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulTsC7GHsJ .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulTsC7GHsJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulTsC7GHsJ .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulTsC7GHsJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulTsC7GHsJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulTsC7GHsJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulTsC7GHsJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulTsC7GHsJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulTsC7GHsJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulTsC7GHsJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulTsC7GHsJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulTsC7GHsJ .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-ulTsC7GHsJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulTsC7GHsJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulTsC7GHsJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulTsC7GHsJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulTsC7GHsJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulTsC7GHsJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulTsC7GHsJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulTsC7GHsJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulTsC7GHsJ .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-ulTsC7GHsJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulTsC7GHsJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulTsC7GHsJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulTsC7GHsJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulTsC7GHsJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulTsC7GHsJ .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulTsC7GHsJ .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulTsC7GHsJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulTsC7GHsJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulTsC7GHsJ .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulTsC7GHsJ .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-ulTsC7GHsJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulTsC7GHsJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulTsC7GHsJ .dropdown-item.active,
.cid-ulTsC7GHsJ .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulTsC7GHsJ .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulTsC7GHsJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulTsC7GHsJ .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulTsC7GHsJ .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulTsC7GHsJ .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulTsC7GHsJ .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulTsC7GHsJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulTsC7GHsJ .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulTsC7GHsJ .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulTsC7GHsJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulTsC7GHsJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulTsC7GHsJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulTsC7GHsJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulTsC7GHsJ .navbar-buttons {
  text-align: center;
}
.cid-ulTsC7GHsJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulTsC7GHsJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulTsC7GHsJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulTsC7GHsJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulTsC7GHsJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulTsC7GHsJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulTsC7GHsJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulTsC7GHsJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulTsC7GHsJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulTsC7GHsJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulTsC7GHsJ .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulTsC7GHsJ 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-ulTsC7GHsJ .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulTsC7GHsJ .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-ulTsC7GHsJ .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulTsC7GHsJ .navbar {
    height: 77px;
  }
  .cid-ulTsC7GHsJ .navbar.opened {
    height: auto;
  }
  .cid-ulTsC7GHsJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulTsC7GHsJ 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-ulTsC7GHsJ a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulTsC7GHsJ .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulTsC7GHsJ .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYa58hoe {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYa58hoe h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYa58hoe .container {
    position: relative;
  }
  .cid-uKZYa58hoe .row {
    margin: 0;
  }
  .cid-uKZYa58hoe h2 {
    margin: 0;
  }
}
.cid-uKZYa58hoe .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYa58hoe .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYa58hoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYa58hoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulTsC9vQNO {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulTsC9vQNO .item-img {
  position: relative;
}
.cid-ulTsC9vQNO .item-img img {
  transition: all 0.2s;
}
.cid-ulTsC9vQNO .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulTsC9vQNO .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulTsC9vQNO .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulTsC9vQNO .item:hover img {
  transform: scale(1.05);
}
.cid-ulTsC9vQNO .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulTsC9vQNO .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulTsC9vQNO .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulTsC9vQNO .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulTsC9vQNO .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulTsC9vQNO .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-ulTsC9vQNO .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-ulTsC9vQNO .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulTsC9vQNO .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulTsC9vQNO .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulTsC9vQNO .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulTsC9vQNO .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulTsC9vQNO .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-ulTsC9vQNO .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulTsC9vQNO img,
.cid-ulTsC9vQNO .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulTsC9vQNO .item:focus,
.cid-ulTsC9vQNO span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulTsC9vQNO .item {
    margin-bottom: 1rem;
  }
}
.cid-ulTsC9vQNO .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulTsC9vQNO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulTsC9vQNO .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulTsC9vQNO .mbr-section-subtitle,
.cid-ulTsC9vQNO .subtitle-wrap,
.cid-ulTsC9vQNO .mbr-section-btn {
  text-align: left;
}
.cid-ulTsC9vQNO .mbr-text,
.cid-ulTsC9vQNO .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulTsCaicPP .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulTsCaicPP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulTsCaicPP .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-ulTsCaicPP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulTsCaicPP .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulTsCaJtvK {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulTsCaJtvK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulTsCaJtvK textarea {
  min-height: 150px;
}
.cid-ulTsCaJtvK input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulTsCaJtvK textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulTsCaJtvK .form-control,
.cid-ulTsCaJtvK .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-ulTsCaJtvK .form-control input::-webkit-input-placeholder,
.cid-ulTsCaJtvK .field-input input::-webkit-input-placeholder,
.cid-ulTsCaJtvK .form-control textarea::-webkit-input-placeholder,
.cid-ulTsCaJtvK .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulTsCaJtvK .form-control input:-moz-placeholder,
.cid-ulTsCaJtvK .field-input input:-moz-placeholder,
.cid-ulTsCaJtvK .form-control textarea:-moz-placeholder,
.cid-ulTsCaJtvK .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulTsCaJtvK .jq-number__spin:hover,
.cid-ulTsCaJtvK .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulTsCaJtvK .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulTsCaJtvK .jq-selectbox li,
.cid-ulTsCaJtvK .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulTsCaJtvK .jq-selectbox li:hover,
.cid-ulTsCaJtvK .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulTsCaJtvK .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulTsCaJtvK .jq-number__spin.minus:hover:after,
.cid-ulTsCaJtvK .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulTsCaJtvK .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulTsCaJtvK .jq-number__spin.minus:after,
.cid-ulTsCaJtvK .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulTsCaJtvK .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulTsCaJtvK .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulTsCaJtvK .email-input {
    margin-top: 2rem;
  }
}
.cid-ulTsCaJtvK .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulTsCaJtvK .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulTsCaJtvK .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulTsCaJtvK .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulTsCaJtvK .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulTsCaJtvK .social-list {
  display: flex;
}
.cid-ulTsCaJtvK .social-list a {
  transition: .3s;
}
.cid-ulTsCaJtvK .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulTsCaJtvK .row {
  align-items: center;
}
.cid-ulTsCaJtvK .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulTsCaJtvK .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulTsCaJtvK .form-btn {
  margin-top: 2.5rem;
}
.cid-ulTsCaJtvK input::-webkit-input-placeholder,
.cid-ulTsCaJtvK textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulTsCaJtvK input:-moz-placeholder,
.cid-ulTsCaJtvK textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulTsCaJtvK .media-content {
    padding-right: 3rem;
  }
  .cid-ulTsCaJtvK .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulTsCaJtvK .row {
    padding: 0 1rem;
  }
}
.cid-ulTsCaJtvK .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulTsCaJtvK .form-btn {
    width: 100%;
  }
  .cid-ulTsCaJtvK .btn {
    width: 100%;
  }
}
.cid-ulTsCbAhDU {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulTsCbAhDU .image-block {
  margin: auto;
}
.cid-ulTsCbAhDU .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulTsCbAhDU .image-block {
    width: 100% !important;
  }
}
.cid-ulTsCbAhDU .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulTsCbAhDU .container {
    padding: 0 2rem;
  }
}
.cid-ulTsCc2pnO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulTsCc2pnO .media-container-row {
  align-items: center;
}
.cid-ulTsCc2pnO .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulTsCc2pnO .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulTsCc2pnO .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulTsCc2pnO .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulTsCc2pnO .foot-menu-item {
  transform: 0.2s;
}
.cid-ulTsCc2pnO .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulTsCc2pnO .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-ulTsCc2pnO .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulTsCc2pnO .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulTsCc2pnO .foot-menu {
    justify-content: center;
  }
  .cid-ulTsCc2pnO .mbr-text {
    text-align: center;
  }
  .cid-ulTsCc2pnO .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulTsCc2pnO .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulTsCc2pnO .link:hover {
  color: #ffffff;
}
.cid-ulTsCc2pnO .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulTvb2UjvS .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-ulTvb2UjvS .nav-item:focus,
.cid-ulTvb2UjvS .nav-link:focus {
  outline: none;
}
.cid-ulTvb2UjvS .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-ulTvb2UjvS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulTvb2UjvS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulTvb2UjvS .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-ulTvb2UjvS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulTvb2UjvS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulTvb2UjvS .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulTvb2UjvS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulTvb2UjvS .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulTvb2UjvS .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulTvb2UjvS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulTvb2UjvS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulTvb2UjvS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulTvb2UjvS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulTvb2UjvS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulTvb2UjvS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulTvb2UjvS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulTvb2UjvS .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-ulTvb2UjvS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulTvb2UjvS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulTvb2UjvS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulTvb2UjvS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulTvb2UjvS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulTvb2UjvS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulTvb2UjvS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulTvb2UjvS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulTvb2UjvS .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-ulTvb2UjvS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulTvb2UjvS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulTvb2UjvS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulTvb2UjvS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulTvb2UjvS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulTvb2UjvS .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulTvb2UjvS .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulTvb2UjvS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulTvb2UjvS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulTvb2UjvS .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulTvb2UjvS .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-ulTvb2UjvS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulTvb2UjvS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulTvb2UjvS .dropdown-item.active,
.cid-ulTvb2UjvS .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulTvb2UjvS .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulTvb2UjvS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulTvb2UjvS .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulTvb2UjvS .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulTvb2UjvS .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulTvb2UjvS .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulTvb2UjvS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulTvb2UjvS .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulTvb2UjvS .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulTvb2UjvS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulTvb2UjvS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulTvb2UjvS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulTvb2UjvS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulTvb2UjvS .navbar-buttons {
  text-align: center;
}
.cid-ulTvb2UjvS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulTvb2UjvS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulTvb2UjvS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulTvb2UjvS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulTvb2UjvS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulTvb2UjvS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulTvb2UjvS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulTvb2UjvS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulTvb2UjvS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulTvb2UjvS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulTvb2UjvS .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulTvb2UjvS 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-ulTvb2UjvS .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulTvb2UjvS .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-ulTvb2UjvS .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulTvb2UjvS .navbar {
    height: 77px;
  }
  .cid-ulTvb2UjvS .navbar.opened {
    height: auto;
  }
  .cid-ulTvb2UjvS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulTvb2UjvS 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-ulTvb2UjvS a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulTvb2UjvS .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulTvb2UjvS .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYkU3Y54 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYkU3Y54 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYkU3Y54 .container {
    position: relative;
  }
  .cid-uKZYkU3Y54 .row {
    margin: 0;
  }
  .cid-uKZYkU3Y54 h2 {
    margin: 0;
  }
}
.cid-uKZYkU3Y54 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYkU3Y54 .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYkU3Y54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYkU3Y54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulTvb4Ixhd {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulTvb4Ixhd .item-img {
  position: relative;
}
.cid-ulTvb4Ixhd .item-img img {
  transition: all 0.2s;
}
.cid-ulTvb4Ixhd .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulTvb4Ixhd .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulTvb4Ixhd .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulTvb4Ixhd .item:hover img {
  transform: scale(1.05);
}
.cid-ulTvb4Ixhd .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulTvb4Ixhd .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulTvb4Ixhd .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulTvb4Ixhd .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulTvb4Ixhd .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulTvb4Ixhd .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-ulTvb4Ixhd .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-ulTvb4Ixhd .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulTvb4Ixhd .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulTvb4Ixhd .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulTvb4Ixhd .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulTvb4Ixhd .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulTvb4Ixhd .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-ulTvb4Ixhd .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulTvb4Ixhd img,
.cid-ulTvb4Ixhd .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulTvb4Ixhd .item:focus,
.cid-ulTvb4Ixhd span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulTvb4Ixhd .item {
    margin-bottom: 1rem;
  }
}
.cid-ulTvb4Ixhd .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulTvb4Ixhd .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulTvb4Ixhd .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulTvb4Ixhd .mbr-section-subtitle,
.cid-ulTvb4Ixhd .subtitle-wrap,
.cid-ulTvb4Ixhd .mbr-section-btn {
  text-align: left;
}
.cid-ulTvb4Ixhd .mbr-text,
.cid-ulTvb4Ixhd .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulTvb5p2qT .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulTvb5p2qT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulTvb5p2qT .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-ulTvb5p2qT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulTvb5p2qT .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulTvb5UVZy {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulTvb5UVZy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulTvb5UVZy textarea {
  min-height: 150px;
}
.cid-ulTvb5UVZy input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulTvb5UVZy textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulTvb5UVZy .form-control,
.cid-ulTvb5UVZy .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-ulTvb5UVZy .form-control input::-webkit-input-placeholder,
.cid-ulTvb5UVZy .field-input input::-webkit-input-placeholder,
.cid-ulTvb5UVZy .form-control textarea::-webkit-input-placeholder,
.cid-ulTvb5UVZy .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulTvb5UVZy .form-control input:-moz-placeholder,
.cid-ulTvb5UVZy .field-input input:-moz-placeholder,
.cid-ulTvb5UVZy .form-control textarea:-moz-placeholder,
.cid-ulTvb5UVZy .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulTvb5UVZy .jq-number__spin:hover,
.cid-ulTvb5UVZy .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulTvb5UVZy .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulTvb5UVZy .jq-selectbox li,
.cid-ulTvb5UVZy .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulTvb5UVZy .jq-selectbox li:hover,
.cid-ulTvb5UVZy .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulTvb5UVZy .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulTvb5UVZy .jq-number__spin.minus:hover:after,
.cid-ulTvb5UVZy .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulTvb5UVZy .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulTvb5UVZy .jq-number__spin.minus:after,
.cid-ulTvb5UVZy .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulTvb5UVZy .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulTvb5UVZy .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulTvb5UVZy .email-input {
    margin-top: 2rem;
  }
}
.cid-ulTvb5UVZy .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulTvb5UVZy .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulTvb5UVZy .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulTvb5UVZy .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulTvb5UVZy .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulTvb5UVZy .social-list {
  display: flex;
}
.cid-ulTvb5UVZy .social-list a {
  transition: .3s;
}
.cid-ulTvb5UVZy .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulTvb5UVZy .row {
  align-items: center;
}
.cid-ulTvb5UVZy .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulTvb5UVZy .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulTvb5UVZy .form-btn {
  margin-top: 2.5rem;
}
.cid-ulTvb5UVZy input::-webkit-input-placeholder,
.cid-ulTvb5UVZy textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulTvb5UVZy input:-moz-placeholder,
.cid-ulTvb5UVZy textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulTvb5UVZy .media-content {
    padding-right: 3rem;
  }
  .cid-ulTvb5UVZy .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulTvb5UVZy .row {
    padding: 0 1rem;
  }
}
.cid-ulTvb5UVZy .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulTvb5UVZy .form-btn {
    width: 100%;
  }
  .cid-ulTvb5UVZy .btn {
    width: 100%;
  }
}
.cid-ulTvb6zr5a {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulTvb6zr5a .image-block {
  margin: auto;
}
.cid-ulTvb6zr5a .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulTvb6zr5a .image-block {
    width: 100% !important;
  }
}
.cid-ulTvb6zr5a .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulTvb6zr5a .container {
    padding: 0 2rem;
  }
}
.cid-ulTvb6ZMx5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulTvb6ZMx5 .media-container-row {
  align-items: center;
}
.cid-ulTvb6ZMx5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulTvb6ZMx5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulTvb6ZMx5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulTvb6ZMx5 .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulTvb6ZMx5 .foot-menu-item {
  transform: 0.2s;
}
.cid-ulTvb6ZMx5 .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulTvb6ZMx5 .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-ulTvb6ZMx5 .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulTvb6ZMx5 .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulTvb6ZMx5 .foot-menu {
    justify-content: center;
  }
  .cid-ulTvb6ZMx5 .mbr-text {
    text-align: center;
  }
  .cid-ulTvb6ZMx5 .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulTvb6ZMx5 .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulTvb6ZMx5 .link:hover {
  color: #ffffff;
}
.cid-ulTvb6ZMx5 .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulTvTTnwGy .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-ulTvTTnwGy .nav-item:focus,
.cid-ulTvTTnwGy .nav-link:focus {
  outline: none;
}
.cid-ulTvTTnwGy .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-ulTvTTnwGy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulTvTTnwGy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulTvTTnwGy .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-ulTvTTnwGy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulTvTTnwGy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulTvTTnwGy .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulTvTTnwGy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulTvTTnwGy .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulTvTTnwGy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulTvTTnwGy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulTvTTnwGy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulTvTTnwGy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulTvTTnwGy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulTvTTnwGy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulTvTTnwGy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulTvTTnwGy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulTvTTnwGy .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-ulTvTTnwGy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulTvTTnwGy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulTvTTnwGy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulTvTTnwGy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulTvTTnwGy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulTvTTnwGy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulTvTTnwGy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulTvTTnwGy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulTvTTnwGy .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-ulTvTTnwGy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulTvTTnwGy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulTvTTnwGy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulTvTTnwGy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulTvTTnwGy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulTvTTnwGy .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulTvTTnwGy .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulTvTTnwGy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulTvTTnwGy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulTvTTnwGy .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulTvTTnwGy .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-ulTvTTnwGy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulTvTTnwGy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulTvTTnwGy .dropdown-item.active,
.cid-ulTvTTnwGy .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulTvTTnwGy .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulTvTTnwGy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulTvTTnwGy .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulTvTTnwGy .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulTvTTnwGy .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulTvTTnwGy .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulTvTTnwGy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulTvTTnwGy .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulTvTTnwGy .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulTvTTnwGy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulTvTTnwGy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulTvTTnwGy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulTvTTnwGy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulTvTTnwGy .navbar-buttons {
  text-align: center;
}
.cid-ulTvTTnwGy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulTvTTnwGy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulTvTTnwGy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulTvTTnwGy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulTvTTnwGy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulTvTTnwGy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulTvTTnwGy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulTvTTnwGy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulTvTTnwGy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulTvTTnwGy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulTvTTnwGy .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulTvTTnwGy 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-ulTvTTnwGy .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulTvTTnwGy .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-ulTvTTnwGy .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulTvTTnwGy .navbar {
    height: 77px;
  }
  .cid-ulTvTTnwGy .navbar.opened {
    height: auto;
  }
  .cid-ulTvTTnwGy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulTvTTnwGy 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-ulTvTTnwGy a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulTvTTnwGy .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulTvTTnwGy .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYulD6fs {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYulD6fs h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYulD6fs .container {
    position: relative;
  }
  .cid-uKZYulD6fs .row {
    margin: 0;
  }
  .cid-uKZYulD6fs h2 {
    margin: 0;
  }
}
.cid-uKZYulD6fs .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYulD6fs .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYulD6fs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYulD6fs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulTvTVggjo {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulTvTVggjo .item-img {
  position: relative;
}
.cid-ulTvTVggjo .item-img img {
  transition: all 0.2s;
}
.cid-ulTvTVggjo .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulTvTVggjo .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulTvTVggjo .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulTvTVggjo .item:hover img {
  transform: scale(1.05);
}
.cid-ulTvTVggjo .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulTvTVggjo .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulTvTVggjo .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulTvTVggjo .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulTvTVggjo .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulTvTVggjo .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-ulTvTVggjo .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-ulTvTVggjo .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulTvTVggjo .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulTvTVggjo .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulTvTVggjo .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulTvTVggjo .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulTvTVggjo .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-ulTvTVggjo .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulTvTVggjo img,
.cid-ulTvTVggjo .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulTvTVggjo .item:focus,
.cid-ulTvTVggjo span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulTvTVggjo .item {
    margin-bottom: 1rem;
  }
}
.cid-ulTvTVggjo .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulTvTVggjo .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulTvTVggjo .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulTvTVggjo .mbr-section-subtitle,
.cid-ulTvTVggjo .subtitle-wrap,
.cid-ulTvTVggjo .mbr-section-btn {
  text-align: left;
}
.cid-ulTvTVggjo .mbr-text,
.cid-ulTvTVggjo .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulTvTVZI0Z .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulTvTVZI0Z .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulTvTVZI0Z .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-ulTvTVZI0Z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulTvTVZI0Z .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulTvTWpe3t {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulTvTWpe3t .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulTvTWpe3t textarea {
  min-height: 150px;
}
.cid-ulTvTWpe3t input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulTvTWpe3t textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulTvTWpe3t .form-control,
.cid-ulTvTWpe3t .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-ulTvTWpe3t .form-control input::-webkit-input-placeholder,
.cid-ulTvTWpe3t .field-input input::-webkit-input-placeholder,
.cid-ulTvTWpe3t .form-control textarea::-webkit-input-placeholder,
.cid-ulTvTWpe3t .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulTvTWpe3t .form-control input:-moz-placeholder,
.cid-ulTvTWpe3t .field-input input:-moz-placeholder,
.cid-ulTvTWpe3t .form-control textarea:-moz-placeholder,
.cid-ulTvTWpe3t .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulTvTWpe3t .jq-number__spin:hover,
.cid-ulTvTWpe3t .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulTvTWpe3t .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulTvTWpe3t .jq-selectbox li,
.cid-ulTvTWpe3t .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulTvTWpe3t .jq-selectbox li:hover,
.cid-ulTvTWpe3t .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulTvTWpe3t .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulTvTWpe3t .jq-number__spin.minus:hover:after,
.cid-ulTvTWpe3t .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulTvTWpe3t .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulTvTWpe3t .jq-number__spin.minus:after,
.cid-ulTvTWpe3t .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulTvTWpe3t .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulTvTWpe3t .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulTvTWpe3t .email-input {
    margin-top: 2rem;
  }
}
.cid-ulTvTWpe3t .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulTvTWpe3t .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulTvTWpe3t .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulTvTWpe3t .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulTvTWpe3t .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulTvTWpe3t .social-list {
  display: flex;
}
.cid-ulTvTWpe3t .social-list a {
  transition: .3s;
}
.cid-ulTvTWpe3t .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulTvTWpe3t .row {
  align-items: center;
}
.cid-ulTvTWpe3t .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulTvTWpe3t .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulTvTWpe3t .form-btn {
  margin-top: 2.5rem;
}
.cid-ulTvTWpe3t input::-webkit-input-placeholder,
.cid-ulTvTWpe3t textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulTvTWpe3t input:-moz-placeholder,
.cid-ulTvTWpe3t textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulTvTWpe3t .media-content {
    padding-right: 3rem;
  }
  .cid-ulTvTWpe3t .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulTvTWpe3t .row {
    padding: 0 1rem;
  }
}
.cid-ulTvTWpe3t .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulTvTWpe3t .form-btn {
    width: 100%;
  }
  .cid-ulTvTWpe3t .btn {
    width: 100%;
  }
}
.cid-ulTvTX45hS {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulTvTX45hS .image-block {
  margin: auto;
}
.cid-ulTvTX45hS .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulTvTX45hS .image-block {
    width: 100% !important;
  }
}
.cid-ulTvTX45hS .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulTvTX45hS .container {
    padding: 0 2rem;
  }
}
.cid-ulTvTXtk2n {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulTvTXtk2n .media-container-row {
  align-items: center;
}
.cid-ulTvTXtk2n .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulTvTXtk2n .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulTvTXtk2n .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulTvTXtk2n .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulTvTXtk2n .foot-menu-item {
  transform: 0.2s;
}
.cid-ulTvTXtk2n .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulTvTXtk2n .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-ulTvTXtk2n .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulTvTXtk2n .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulTvTXtk2n .foot-menu {
    justify-content: center;
  }
  .cid-ulTvTXtk2n .mbr-text {
    text-align: center;
  }
  .cid-ulTvTXtk2n .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulTvTXtk2n .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulTvTXtk2n .link:hover {
  color: #ffffff;
}
.cid-ulTvTXtk2n .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUy2yMXsv .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-ulUy2yMXsv .nav-item:focus,
.cid-ulUy2yMXsv .nav-link:focus {
  outline: none;
}
.cid-ulUy2yMXsv .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-ulUy2yMXsv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUy2yMXsv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUy2yMXsv .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-ulUy2yMXsv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUy2yMXsv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUy2yMXsv .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUy2yMXsv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUy2yMXsv .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUy2yMXsv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUy2yMXsv .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUy2yMXsv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUy2yMXsv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUy2yMXsv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUy2yMXsv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUy2yMXsv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUy2yMXsv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUy2yMXsv .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-ulUy2yMXsv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUy2yMXsv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUy2yMXsv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUy2yMXsv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUy2yMXsv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUy2yMXsv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUy2yMXsv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUy2yMXsv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUy2yMXsv .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-ulUy2yMXsv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUy2yMXsv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUy2yMXsv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUy2yMXsv .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUy2yMXsv .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUy2yMXsv .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUy2yMXsv .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUy2yMXsv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUy2yMXsv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUy2yMXsv .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUy2yMXsv .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-ulUy2yMXsv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUy2yMXsv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUy2yMXsv .dropdown-item.active,
.cid-ulUy2yMXsv .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUy2yMXsv .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUy2yMXsv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUy2yMXsv .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUy2yMXsv .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUy2yMXsv .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUy2yMXsv .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUy2yMXsv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUy2yMXsv .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUy2yMXsv .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUy2yMXsv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUy2yMXsv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUy2yMXsv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUy2yMXsv ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUy2yMXsv .navbar-buttons {
  text-align: center;
}
.cid-ulUy2yMXsv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUy2yMXsv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUy2yMXsv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUy2yMXsv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUy2yMXsv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUy2yMXsv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUy2yMXsv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUy2yMXsv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUy2yMXsv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUy2yMXsv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUy2yMXsv .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUy2yMXsv 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-ulUy2yMXsv .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUy2yMXsv .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-ulUy2yMXsv .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUy2yMXsv .navbar {
    height: 77px;
  }
  .cid-ulUy2yMXsv .navbar.opened {
    height: auto;
  }
  .cid-ulUy2yMXsv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUy2yMXsv 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-ulUy2yMXsv a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUy2yMXsv .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUy2yMXsv .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYwR93jJ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYwR93jJ h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYwR93jJ .container {
    position: relative;
  }
  .cid-uKZYwR93jJ .row {
    margin: 0;
  }
  .cid-uKZYwR93jJ h2 {
    margin: 0;
  }
}
.cid-uKZYwR93jJ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYwR93jJ .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYwR93jJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYwR93jJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulUy2AlcW7 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUy2AlcW7 .item-img {
  position: relative;
}
.cid-ulUy2AlcW7 .item-img img {
  transition: all 0.2s;
}
.cid-ulUy2AlcW7 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUy2AlcW7 .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUy2AlcW7 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUy2AlcW7 .item:hover img {
  transform: scale(1.05);
}
.cid-ulUy2AlcW7 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUy2AlcW7 .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUy2AlcW7 .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUy2AlcW7 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUy2AlcW7 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUy2AlcW7 .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-ulUy2AlcW7 .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-ulUy2AlcW7 .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUy2AlcW7 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUy2AlcW7 .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUy2AlcW7 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUy2AlcW7 .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUy2AlcW7 .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-ulUy2AlcW7 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUy2AlcW7 img,
.cid-ulUy2AlcW7 .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUy2AlcW7 .item:focus,
.cid-ulUy2AlcW7 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUy2AlcW7 .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUy2AlcW7 .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUy2AlcW7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUy2AlcW7 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUy2AlcW7 .mbr-section-subtitle,
.cid-ulUy2AlcW7 .subtitle-wrap,
.cid-ulUy2AlcW7 .mbr-section-btn {
  text-align: left;
}
.cid-ulUy2AlcW7 .mbr-text,
.cid-ulUy2AlcW7 .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUy2AZh8W .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUy2AZh8W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUy2AZh8W .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-ulUy2AZh8W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUy2AZh8W .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUy2Bzz1y {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUy2Bzz1y .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUy2Bzz1y textarea {
  min-height: 150px;
}
.cid-ulUy2Bzz1y input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUy2Bzz1y textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUy2Bzz1y .form-control,
.cid-ulUy2Bzz1y .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-ulUy2Bzz1y .form-control input::-webkit-input-placeholder,
.cid-ulUy2Bzz1y .field-input input::-webkit-input-placeholder,
.cid-ulUy2Bzz1y .form-control textarea::-webkit-input-placeholder,
.cid-ulUy2Bzz1y .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUy2Bzz1y .form-control input:-moz-placeholder,
.cid-ulUy2Bzz1y .field-input input:-moz-placeholder,
.cid-ulUy2Bzz1y .form-control textarea:-moz-placeholder,
.cid-ulUy2Bzz1y .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUy2Bzz1y .jq-number__spin:hover,
.cid-ulUy2Bzz1y .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUy2Bzz1y .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUy2Bzz1y .jq-selectbox li,
.cid-ulUy2Bzz1y .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUy2Bzz1y .jq-selectbox li:hover,
.cid-ulUy2Bzz1y .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUy2Bzz1y .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUy2Bzz1y .jq-number__spin.minus:hover:after,
.cid-ulUy2Bzz1y .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUy2Bzz1y .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUy2Bzz1y .jq-number__spin.minus:after,
.cid-ulUy2Bzz1y .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUy2Bzz1y .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUy2Bzz1y .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUy2Bzz1y .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUy2Bzz1y .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUy2Bzz1y .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUy2Bzz1y .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUy2Bzz1y .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUy2Bzz1y .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUy2Bzz1y .social-list {
  display: flex;
}
.cid-ulUy2Bzz1y .social-list a {
  transition: .3s;
}
.cid-ulUy2Bzz1y .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUy2Bzz1y .row {
  align-items: center;
}
.cid-ulUy2Bzz1y .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUy2Bzz1y .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUy2Bzz1y .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUy2Bzz1y input::-webkit-input-placeholder,
.cid-ulUy2Bzz1y textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUy2Bzz1y input:-moz-placeholder,
.cid-ulUy2Bzz1y textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUy2Bzz1y .media-content {
    padding-right: 3rem;
  }
  .cid-ulUy2Bzz1y .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUy2Bzz1y .row {
    padding: 0 1rem;
  }
}
.cid-ulUy2Bzz1y .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUy2Bzz1y .form-btn {
    width: 100%;
  }
  .cid-ulUy2Bzz1y .btn {
    width: 100%;
  }
}
.cid-ulUy2Cq0cj {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUy2Cq0cj .image-block {
  margin: auto;
}
.cid-ulUy2Cq0cj .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUy2Cq0cj .image-block {
    width: 100% !important;
  }
}
.cid-ulUy2Cq0cj .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUy2Cq0cj .container {
    padding: 0 2rem;
  }
}
.cid-ulUy2CYouA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUy2CYouA .media-container-row {
  align-items: center;
}
.cid-ulUy2CYouA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUy2CYouA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUy2CYouA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUy2CYouA .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUy2CYouA .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUy2CYouA .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUy2CYouA .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-ulUy2CYouA .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUy2CYouA .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUy2CYouA .foot-menu {
    justify-content: center;
  }
  .cid-ulUy2CYouA .mbr-text {
    text-align: center;
  }
  .cid-ulUy2CYouA .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUy2CYouA .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUy2CYouA .link:hover {
  color: #ffffff;
}
.cid-ulUy2CYouA .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUyH6VhPO .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-ulUyH6VhPO .nav-item:focus,
.cid-ulUyH6VhPO .nav-link:focus {
  outline: none;
}
.cid-ulUyH6VhPO .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-ulUyH6VhPO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUyH6VhPO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUyH6VhPO .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-ulUyH6VhPO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUyH6VhPO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUyH6VhPO .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUyH6VhPO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUyH6VhPO .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUyH6VhPO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUyH6VhPO .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUyH6VhPO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUyH6VhPO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUyH6VhPO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUyH6VhPO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUyH6VhPO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUyH6VhPO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUyH6VhPO .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-ulUyH6VhPO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUyH6VhPO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUyH6VhPO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUyH6VhPO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUyH6VhPO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUyH6VhPO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUyH6VhPO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUyH6VhPO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUyH6VhPO .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-ulUyH6VhPO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUyH6VhPO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUyH6VhPO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUyH6VhPO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUyH6VhPO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUyH6VhPO .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUyH6VhPO .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUyH6VhPO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUyH6VhPO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUyH6VhPO .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUyH6VhPO .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-ulUyH6VhPO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUyH6VhPO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUyH6VhPO .dropdown-item.active,
.cid-ulUyH6VhPO .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUyH6VhPO .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUyH6VhPO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUyH6VhPO .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUyH6VhPO .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUyH6VhPO .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUyH6VhPO .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUyH6VhPO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUyH6VhPO .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUyH6VhPO .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUyH6VhPO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUyH6VhPO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUyH6VhPO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUyH6VhPO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUyH6VhPO .navbar-buttons {
  text-align: center;
}
.cid-ulUyH6VhPO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUyH6VhPO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUyH6VhPO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUyH6VhPO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUyH6VhPO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUyH6VhPO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUyH6VhPO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUyH6VhPO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUyH6VhPO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUyH6VhPO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUyH6VhPO .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUyH6VhPO 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-ulUyH6VhPO .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUyH6VhPO .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-ulUyH6VhPO .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUyH6VhPO .navbar {
    height: 77px;
  }
  .cid-ulUyH6VhPO .navbar.opened {
    height: auto;
  }
  .cid-ulUyH6VhPO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUyH6VhPO 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-ulUyH6VhPO a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUyH6VhPO .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUyH6VhPO .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYzKMPKy {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYzKMPKy h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYzKMPKy .container {
    position: relative;
  }
  .cid-uKZYzKMPKy .row {
    margin: 0;
  }
  .cid-uKZYzKMPKy h2 {
    margin: 0;
  }
}
.cid-uKZYzKMPKy .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYzKMPKy .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYzKMPKy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYzKMPKy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulUyH8SBee {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUyH8SBee .item-img {
  position: relative;
}
.cid-ulUyH8SBee .item-img img {
  transition: all 0.2s;
}
.cid-ulUyH8SBee .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUyH8SBee .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUyH8SBee .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUyH8SBee .item:hover img {
  transform: scale(1.05);
}
.cid-ulUyH8SBee .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUyH8SBee .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUyH8SBee .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUyH8SBee .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUyH8SBee .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUyH8SBee .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-ulUyH8SBee .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-ulUyH8SBee .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUyH8SBee .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUyH8SBee .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUyH8SBee .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUyH8SBee .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUyH8SBee .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-ulUyH8SBee .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUyH8SBee img,
.cid-ulUyH8SBee .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUyH8SBee .item:focus,
.cid-ulUyH8SBee span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUyH8SBee .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUyH8SBee .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUyH8SBee .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUyH8SBee .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUyH8SBee .mbr-section-subtitle,
.cid-ulUyH8SBee .subtitle-wrap,
.cid-ulUyH8SBee .mbr-section-btn {
  text-align: left;
}
.cid-ulUyH8SBee .mbr-text,
.cid-ulUyH8SBee .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUyH9zLx2 .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUyH9zLx2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUyH9zLx2 .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-ulUyH9zLx2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUyH9zLx2 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUyHa4pxm {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUyHa4pxm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUyHa4pxm textarea {
  min-height: 150px;
}
.cid-ulUyHa4pxm input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUyHa4pxm textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUyHa4pxm .form-control,
.cid-ulUyHa4pxm .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-ulUyHa4pxm .form-control input::-webkit-input-placeholder,
.cid-ulUyHa4pxm .field-input input::-webkit-input-placeholder,
.cid-ulUyHa4pxm .form-control textarea::-webkit-input-placeholder,
.cid-ulUyHa4pxm .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUyHa4pxm .form-control input:-moz-placeholder,
.cid-ulUyHa4pxm .field-input input:-moz-placeholder,
.cid-ulUyHa4pxm .form-control textarea:-moz-placeholder,
.cid-ulUyHa4pxm .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUyHa4pxm .jq-number__spin:hover,
.cid-ulUyHa4pxm .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUyHa4pxm .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUyHa4pxm .jq-selectbox li,
.cid-ulUyHa4pxm .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUyHa4pxm .jq-selectbox li:hover,
.cid-ulUyHa4pxm .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUyHa4pxm .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUyHa4pxm .jq-number__spin.minus:hover:after,
.cid-ulUyHa4pxm .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUyHa4pxm .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUyHa4pxm .jq-number__spin.minus:after,
.cid-ulUyHa4pxm .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUyHa4pxm .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUyHa4pxm .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUyHa4pxm .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUyHa4pxm .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUyHa4pxm .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUyHa4pxm .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUyHa4pxm .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUyHa4pxm .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUyHa4pxm .social-list {
  display: flex;
}
.cid-ulUyHa4pxm .social-list a {
  transition: .3s;
}
.cid-ulUyHa4pxm .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUyHa4pxm .row {
  align-items: center;
}
.cid-ulUyHa4pxm .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUyHa4pxm .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUyHa4pxm .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUyHa4pxm input::-webkit-input-placeholder,
.cid-ulUyHa4pxm textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUyHa4pxm input:-moz-placeholder,
.cid-ulUyHa4pxm textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUyHa4pxm .media-content {
    padding-right: 3rem;
  }
  .cid-ulUyHa4pxm .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUyHa4pxm .row {
    padding: 0 1rem;
  }
}
.cid-ulUyHa4pxm .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUyHa4pxm .form-btn {
    width: 100%;
  }
  .cid-ulUyHa4pxm .btn {
    width: 100%;
  }
}
.cid-ulUyHaZAbj {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUyHaZAbj .image-block {
  margin: auto;
}
.cid-ulUyHaZAbj .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUyHaZAbj .image-block {
    width: 100% !important;
  }
}
.cid-ulUyHaZAbj .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUyHaZAbj .container {
    padding: 0 2rem;
  }
}
.cid-ulUyHbvZwD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUyHbvZwD .media-container-row {
  align-items: center;
}
.cid-ulUyHbvZwD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUyHbvZwD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUyHbvZwD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUyHbvZwD .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUyHbvZwD .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUyHbvZwD .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUyHbvZwD .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-ulUyHbvZwD .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUyHbvZwD .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUyHbvZwD .foot-menu {
    justify-content: center;
  }
  .cid-ulUyHbvZwD .mbr-text {
    text-align: center;
  }
  .cid-ulUyHbvZwD .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUyHbvZwD .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUyHbvZwD .link:hover {
  color: #ffffff;
}
.cid-ulUyHbvZwD .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUyTRVt9A .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-ulUyTRVt9A .nav-item:focus,
.cid-ulUyTRVt9A .nav-link:focus {
  outline: none;
}
.cid-ulUyTRVt9A .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-ulUyTRVt9A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUyTRVt9A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUyTRVt9A .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-ulUyTRVt9A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUyTRVt9A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUyTRVt9A .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUyTRVt9A .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUyTRVt9A .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUyTRVt9A .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUyTRVt9A .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUyTRVt9A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUyTRVt9A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUyTRVt9A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUyTRVt9A .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUyTRVt9A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUyTRVt9A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUyTRVt9A .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-ulUyTRVt9A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUyTRVt9A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUyTRVt9A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUyTRVt9A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUyTRVt9A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUyTRVt9A .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUyTRVt9A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUyTRVt9A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUyTRVt9A .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-ulUyTRVt9A .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUyTRVt9A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUyTRVt9A .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUyTRVt9A .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUyTRVt9A .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUyTRVt9A .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUyTRVt9A .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUyTRVt9A .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUyTRVt9A .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUyTRVt9A .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUyTRVt9A .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-ulUyTRVt9A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUyTRVt9A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUyTRVt9A .dropdown-item.active,
.cid-ulUyTRVt9A .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUyTRVt9A .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUyTRVt9A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUyTRVt9A .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUyTRVt9A .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUyTRVt9A .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUyTRVt9A .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUyTRVt9A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUyTRVt9A .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUyTRVt9A .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUyTRVt9A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUyTRVt9A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUyTRVt9A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUyTRVt9A ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUyTRVt9A .navbar-buttons {
  text-align: center;
}
.cid-ulUyTRVt9A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUyTRVt9A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUyTRVt9A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUyTRVt9A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUyTRVt9A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUyTRVt9A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUyTRVt9A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUyTRVt9A nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUyTRVt9A nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUyTRVt9A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUyTRVt9A .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUyTRVt9A 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-ulUyTRVt9A .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUyTRVt9A .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-ulUyTRVt9A .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUyTRVt9A .navbar {
    height: 77px;
  }
  .cid-ulUyTRVt9A .navbar.opened {
    height: auto;
  }
  .cid-ulUyTRVt9A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUyTRVt9A 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-ulUyTRVt9A a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUyTRVt9A .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUyTRVt9A .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYBX81mB {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYBX81mB h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYBX81mB .container {
    position: relative;
  }
  .cid-uKZYBX81mB .row {
    margin: 0;
  }
  .cid-uKZYBX81mB h2 {
    margin: 0;
  }
}
.cid-uKZYBX81mB .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYBX81mB .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYBX81mB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYBX81mB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulUyTTFyBS {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUyTTFyBS .item-img {
  position: relative;
}
.cid-ulUyTTFyBS .item-img img {
  transition: all 0.2s;
}
.cid-ulUyTTFyBS .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUyTTFyBS .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUyTTFyBS .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUyTTFyBS .item:hover img {
  transform: scale(1.05);
}
.cid-ulUyTTFyBS .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUyTTFyBS .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUyTTFyBS .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUyTTFyBS .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUyTTFyBS .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUyTTFyBS .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-ulUyTTFyBS .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-ulUyTTFyBS .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUyTTFyBS .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUyTTFyBS .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUyTTFyBS .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUyTTFyBS .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUyTTFyBS .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-ulUyTTFyBS .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUyTTFyBS img,
.cid-ulUyTTFyBS .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUyTTFyBS .item:focus,
.cid-ulUyTTFyBS span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUyTTFyBS .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUyTTFyBS .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUyTTFyBS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUyTTFyBS .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUyTTFyBS .mbr-section-subtitle,
.cid-ulUyTTFyBS .subtitle-wrap,
.cid-ulUyTTFyBS .mbr-section-btn {
  text-align: left;
}
.cid-ulUyTTFyBS .mbr-text,
.cid-ulUyTTFyBS .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUyTUpLID .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUyTUpLID .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUyTUpLID .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-ulUyTUpLID .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUyTUpLID .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUyTUYYTk {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUyTUYYTk .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUyTUYYTk textarea {
  min-height: 150px;
}
.cid-ulUyTUYYTk input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUyTUYYTk textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUyTUYYTk .form-control,
.cid-ulUyTUYYTk .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-ulUyTUYYTk .form-control input::-webkit-input-placeholder,
.cid-ulUyTUYYTk .field-input input::-webkit-input-placeholder,
.cid-ulUyTUYYTk .form-control textarea::-webkit-input-placeholder,
.cid-ulUyTUYYTk .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUyTUYYTk .form-control input:-moz-placeholder,
.cid-ulUyTUYYTk .field-input input:-moz-placeholder,
.cid-ulUyTUYYTk .form-control textarea:-moz-placeholder,
.cid-ulUyTUYYTk .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUyTUYYTk .jq-number__spin:hover,
.cid-ulUyTUYYTk .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUyTUYYTk .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUyTUYYTk .jq-selectbox li,
.cid-ulUyTUYYTk .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUyTUYYTk .jq-selectbox li:hover,
.cid-ulUyTUYYTk .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUyTUYYTk .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUyTUYYTk .jq-number__spin.minus:hover:after,
.cid-ulUyTUYYTk .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUyTUYYTk .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUyTUYYTk .jq-number__spin.minus:after,
.cid-ulUyTUYYTk .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUyTUYYTk .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUyTUYYTk .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUyTUYYTk .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUyTUYYTk .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUyTUYYTk .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUyTUYYTk .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUyTUYYTk .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUyTUYYTk .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUyTUYYTk .social-list {
  display: flex;
}
.cid-ulUyTUYYTk .social-list a {
  transition: .3s;
}
.cid-ulUyTUYYTk .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUyTUYYTk .row {
  align-items: center;
}
.cid-ulUyTUYYTk .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUyTUYYTk .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUyTUYYTk .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUyTUYYTk input::-webkit-input-placeholder,
.cid-ulUyTUYYTk textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUyTUYYTk input:-moz-placeholder,
.cid-ulUyTUYYTk textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUyTUYYTk .media-content {
    padding-right: 3rem;
  }
  .cid-ulUyTUYYTk .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUyTUYYTk .row {
    padding: 0 1rem;
  }
}
.cid-ulUyTUYYTk .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUyTUYYTk .form-btn {
    width: 100%;
  }
  .cid-ulUyTUYYTk .btn {
    width: 100%;
  }
}
.cid-ulUyTVQhtT {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUyTVQhtT .image-block {
  margin: auto;
}
.cid-ulUyTVQhtT .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUyTVQhtT .image-block {
    width: 100% !important;
  }
}
.cid-ulUyTVQhtT .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUyTVQhtT .container {
    padding: 0 2rem;
  }
}
.cid-ulUyTWlt8I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUyTWlt8I .media-container-row {
  align-items: center;
}
.cid-ulUyTWlt8I .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUyTWlt8I .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUyTWlt8I .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUyTWlt8I .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUyTWlt8I .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUyTWlt8I .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUyTWlt8I .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-ulUyTWlt8I .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUyTWlt8I .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUyTWlt8I .foot-menu {
    justify-content: center;
  }
  .cid-ulUyTWlt8I .mbr-text {
    text-align: center;
  }
  .cid-ulUyTWlt8I .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUyTWlt8I .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUyTWlt8I .link:hover {
  color: #ffffff;
}
.cid-ulUyTWlt8I .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUz9ol4kn .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-ulUz9ol4kn .nav-item:focus,
.cid-ulUz9ol4kn .nav-link:focus {
  outline: none;
}
.cid-ulUz9ol4kn .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-ulUz9ol4kn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUz9ol4kn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUz9ol4kn .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-ulUz9ol4kn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUz9ol4kn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUz9ol4kn .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUz9ol4kn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUz9ol4kn .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUz9ol4kn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUz9ol4kn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUz9ol4kn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUz9ol4kn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUz9ol4kn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUz9ol4kn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUz9ol4kn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUz9ol4kn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUz9ol4kn .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-ulUz9ol4kn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUz9ol4kn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUz9ol4kn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUz9ol4kn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUz9ol4kn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUz9ol4kn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUz9ol4kn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUz9ol4kn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUz9ol4kn .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-ulUz9ol4kn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUz9ol4kn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUz9ol4kn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUz9ol4kn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUz9ol4kn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUz9ol4kn .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUz9ol4kn .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUz9ol4kn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUz9ol4kn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUz9ol4kn .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUz9ol4kn .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-ulUz9ol4kn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUz9ol4kn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUz9ol4kn .dropdown-item.active,
.cid-ulUz9ol4kn .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUz9ol4kn .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUz9ol4kn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUz9ol4kn .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUz9ol4kn .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUz9ol4kn .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUz9ol4kn .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUz9ol4kn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUz9ol4kn .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUz9ol4kn .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUz9ol4kn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUz9ol4kn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUz9ol4kn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUz9ol4kn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUz9ol4kn .navbar-buttons {
  text-align: center;
}
.cid-ulUz9ol4kn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUz9ol4kn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUz9ol4kn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUz9ol4kn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUz9ol4kn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUz9ol4kn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUz9ol4kn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUz9ol4kn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUz9ol4kn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUz9ol4kn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUz9ol4kn .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUz9ol4kn 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-ulUz9ol4kn .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUz9ol4kn .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-ulUz9ol4kn .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUz9ol4kn .navbar {
    height: 77px;
  }
  .cid-ulUz9ol4kn .navbar.opened {
    height: auto;
  }
  .cid-ulUz9ol4kn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUz9ol4kn 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-ulUz9ol4kn a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUz9ol4kn .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUz9ol4kn .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uKZYEyJbZO {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uKZYEyJbZO h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uKZYEyJbZO .container {
    position: relative;
  }
  .cid-uKZYEyJbZO .row {
    margin: 0;
  }
  .cid-uKZYEyJbZO h2 {
    margin: 0;
  }
}
.cid-uKZYEyJbZO .mbr-section-subtitle {
  color: #e9204f;
}
.cid-uKZYEyJbZO .mbr-text {
  margin-top: 1.4rem;
}
.cid-uKZYEyJbZO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZYEyJbZO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulUz9qf8Ya {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUz9qf8Ya .item-img {
  position: relative;
}
.cid-ulUz9qf8Ya .item-img img {
  transition: all 0.2s;
}
.cid-ulUz9qf8Ya .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUz9qf8Ya .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUz9qf8Ya .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUz9qf8Ya .item:hover img {
  transform: scale(1.05);
}
.cid-ulUz9qf8Ya .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUz9qf8Ya .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUz9qf8Ya .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUz9qf8Ya .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUz9qf8Ya .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUz9qf8Ya .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-ulUz9qf8Ya .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-ulUz9qf8Ya .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUz9qf8Ya .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUz9qf8Ya .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUz9qf8Ya .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUz9qf8Ya .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUz9qf8Ya .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-ulUz9qf8Ya .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUz9qf8Ya img,
.cid-ulUz9qf8Ya .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUz9qf8Ya .item:focus,
.cid-ulUz9qf8Ya span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUz9qf8Ya .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUz9qf8Ya .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUz9qf8Ya .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUz9qf8Ya .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUz9qf8Ya .mbr-section-subtitle,
.cid-ulUz9qf8Ya .subtitle-wrap,
.cid-ulUz9qf8Ya .mbr-section-btn {
  text-align: left;
}
.cid-ulUz9qf8Ya .mbr-text,
.cid-ulUz9qf8Ya .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUz9r0WW3 .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUz9r0WW3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUz9r0WW3 .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-ulUz9r0WW3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUz9r0WW3 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUz9rzLC5 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUz9rzLC5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUz9rzLC5 textarea {
  min-height: 150px;
}
.cid-ulUz9rzLC5 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUz9rzLC5 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUz9rzLC5 .form-control,
.cid-ulUz9rzLC5 .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-ulUz9rzLC5 .form-control input::-webkit-input-placeholder,
.cid-ulUz9rzLC5 .field-input input::-webkit-input-placeholder,
.cid-ulUz9rzLC5 .form-control textarea::-webkit-input-placeholder,
.cid-ulUz9rzLC5 .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUz9rzLC5 .form-control input:-moz-placeholder,
.cid-ulUz9rzLC5 .field-input input:-moz-placeholder,
.cid-ulUz9rzLC5 .form-control textarea:-moz-placeholder,
.cid-ulUz9rzLC5 .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUz9rzLC5 .jq-number__spin:hover,
.cid-ulUz9rzLC5 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUz9rzLC5 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUz9rzLC5 .jq-selectbox li,
.cid-ulUz9rzLC5 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUz9rzLC5 .jq-selectbox li:hover,
.cid-ulUz9rzLC5 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUz9rzLC5 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUz9rzLC5 .jq-number__spin.minus:hover:after,
.cid-ulUz9rzLC5 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUz9rzLC5 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUz9rzLC5 .jq-number__spin.minus:after,
.cid-ulUz9rzLC5 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUz9rzLC5 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUz9rzLC5 .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUz9rzLC5 .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUz9rzLC5 .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUz9rzLC5 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUz9rzLC5 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUz9rzLC5 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUz9rzLC5 .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUz9rzLC5 .social-list {
  display: flex;
}
.cid-ulUz9rzLC5 .social-list a {
  transition: .3s;
}
.cid-ulUz9rzLC5 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUz9rzLC5 .row {
  align-items: center;
}
.cid-ulUz9rzLC5 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUz9rzLC5 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUz9rzLC5 .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUz9rzLC5 input::-webkit-input-placeholder,
.cid-ulUz9rzLC5 textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUz9rzLC5 input:-moz-placeholder,
.cid-ulUz9rzLC5 textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUz9rzLC5 .media-content {
    padding-right: 3rem;
  }
  .cid-ulUz9rzLC5 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUz9rzLC5 .row {
    padding: 0 1rem;
  }
}
.cid-ulUz9rzLC5 .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUz9rzLC5 .form-btn {
    width: 100%;
  }
  .cid-ulUz9rzLC5 .btn {
    width: 100%;
  }
}
.cid-ulUz9sgCNy {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUz9sgCNy .image-block {
  margin: auto;
}
.cid-ulUz9sgCNy .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUz9sgCNy .image-block {
    width: 100% !important;
  }
}
.cid-ulUz9sgCNy .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUz9sgCNy .container {
    padding: 0 2rem;
  }
}
.cid-ulUz9sND4e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUz9sND4e .media-container-row {
  align-items: center;
}
.cid-ulUz9sND4e .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUz9sND4e .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUz9sND4e .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUz9sND4e .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUz9sND4e .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUz9sND4e .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUz9sND4e .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-ulUz9sND4e .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUz9sND4e .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUz9sND4e .foot-menu {
    justify-content: center;
  }
  .cid-ulUz9sND4e .mbr-text {
    text-align: center;
  }
  .cid-ulUz9sND4e .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUz9sND4e .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUz9sND4e .link:hover {
  color: #ffffff;
}
.cid-ulUz9sND4e .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUzqR7AdC .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-ulUzqR7AdC .nav-item:focus,
.cid-ulUzqR7AdC .nav-link:focus {
  outline: none;
}
.cid-ulUzqR7AdC .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-ulUzqR7AdC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUzqR7AdC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUzqR7AdC .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-ulUzqR7AdC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUzqR7AdC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUzqR7AdC .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUzqR7AdC .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUzqR7AdC .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUzqR7AdC .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUzqR7AdC .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUzqR7AdC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUzqR7AdC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUzqR7AdC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUzqR7AdC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUzqR7AdC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUzqR7AdC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUzqR7AdC .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-ulUzqR7AdC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUzqR7AdC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUzqR7AdC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUzqR7AdC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUzqR7AdC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUzqR7AdC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUzqR7AdC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUzqR7AdC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUzqR7AdC .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-ulUzqR7AdC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUzqR7AdC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUzqR7AdC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUzqR7AdC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUzqR7AdC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUzqR7AdC .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUzqR7AdC .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUzqR7AdC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUzqR7AdC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUzqR7AdC .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUzqR7AdC .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-ulUzqR7AdC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUzqR7AdC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUzqR7AdC .dropdown-item.active,
.cid-ulUzqR7AdC .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUzqR7AdC .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUzqR7AdC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUzqR7AdC .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUzqR7AdC .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUzqR7AdC .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUzqR7AdC .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUzqR7AdC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUzqR7AdC .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUzqR7AdC .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUzqR7AdC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUzqR7AdC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUzqR7AdC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUzqR7AdC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUzqR7AdC .navbar-buttons {
  text-align: center;
}
.cid-ulUzqR7AdC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUzqR7AdC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUzqR7AdC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUzqR7AdC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUzqR7AdC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUzqR7AdC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUzqR7AdC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUzqR7AdC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUzqR7AdC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUzqR7AdC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUzqR7AdC .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUzqR7AdC 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-ulUzqR7AdC .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUzqR7AdC .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-ulUzqR7AdC .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUzqR7AdC .navbar {
    height: 77px;
  }
  .cid-ulUzqR7AdC .navbar.opened {
    height: auto;
  }
  .cid-ulUzqR7AdC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUzqR7AdC 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-ulUzqR7AdC a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUzqR7AdC .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUzqR7AdC .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUzqRZ9va {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUzqRZ9va .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUzqRZ9va .carousel {
    height: 100vh;
  }
}
.cid-ulUzqRZ9va .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUzqRZ9va .carousel-item,
.cid-ulUzqRZ9va .carousel-inner {
  height: 100%;
}
.cid-ulUzqRZ9va .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUzqRZ9va .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUzqRZ9va .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUzqRZ9va .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUzqRZ9va .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUzqRZ9va .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUzqRZ9va .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUzqRZ9va .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUzqRZ9va .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUzqRZ9va .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUzqRZ9va .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUzqRZ9va .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUzqRZ9va .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUzqRZ9va .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-ulUzqRZ9va .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUzqRZ9va .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUzqRZ9va .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUzqRZ9va .carousel-control {
    display: none !important;
  }
}
.cid-ulUzqRZ9va .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUzqRZ9va .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-ulUzqRZ9va .carousel-indicators li.active,
.cid-ulUzqRZ9va .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUzqRZ9va .carousel-indicators li::after,
.cid-ulUzqRZ9va .carousel-indicators li::before {
  content: none;
}
.cid-ulUzqRZ9va .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUzqRZ9va .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUzqRZ9va .mbr-section-text,
.cid-ulUzqRZ9va .mbr-section-btn {
  text-align: center;
}
.cid-ulUzqSNgTQ {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUzqSNgTQ .item-img {
  position: relative;
}
.cid-ulUzqSNgTQ .item-img img {
  transition: all 0.2s;
}
.cid-ulUzqSNgTQ .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUzqSNgTQ .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUzqSNgTQ .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUzqSNgTQ .item:hover img {
  transform: scale(1.05);
}
.cid-ulUzqSNgTQ .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUzqSNgTQ .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUzqSNgTQ .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUzqSNgTQ .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUzqSNgTQ .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUzqSNgTQ .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-ulUzqSNgTQ .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-ulUzqSNgTQ .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUzqSNgTQ .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUzqSNgTQ .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUzqSNgTQ .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUzqSNgTQ .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUzqSNgTQ .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-ulUzqSNgTQ .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUzqSNgTQ img,
.cid-ulUzqSNgTQ .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUzqSNgTQ .item:focus,
.cid-ulUzqSNgTQ span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUzqSNgTQ .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUzqSNgTQ .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUzqSNgTQ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUzqSNgTQ .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUzqSNgTQ .mbr-section-subtitle,
.cid-ulUzqSNgTQ .subtitle-wrap,
.cid-ulUzqSNgTQ .mbr-section-btn {
  text-align: left;
}
.cid-ulUzqSNgTQ .mbr-text,
.cid-ulUzqSNgTQ .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUzqTvUxq .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUzqTvUxq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUzqTvUxq .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-ulUzqTvUxq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUzqTvUxq .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUzqUhePt {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUzqUhePt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUzqUhePt textarea {
  min-height: 150px;
}
.cid-ulUzqUhePt input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUzqUhePt textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUzqUhePt .form-control,
.cid-ulUzqUhePt .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-ulUzqUhePt .form-control input::-webkit-input-placeholder,
.cid-ulUzqUhePt .field-input input::-webkit-input-placeholder,
.cid-ulUzqUhePt .form-control textarea::-webkit-input-placeholder,
.cid-ulUzqUhePt .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUzqUhePt .form-control input:-moz-placeholder,
.cid-ulUzqUhePt .field-input input:-moz-placeholder,
.cid-ulUzqUhePt .form-control textarea:-moz-placeholder,
.cid-ulUzqUhePt .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUzqUhePt .jq-number__spin:hover,
.cid-ulUzqUhePt .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUzqUhePt .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUzqUhePt .jq-selectbox li,
.cid-ulUzqUhePt .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUzqUhePt .jq-selectbox li:hover,
.cid-ulUzqUhePt .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUzqUhePt .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUzqUhePt .jq-number__spin.minus:hover:after,
.cid-ulUzqUhePt .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUzqUhePt .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUzqUhePt .jq-number__spin.minus:after,
.cid-ulUzqUhePt .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUzqUhePt .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUzqUhePt .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUzqUhePt .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUzqUhePt .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUzqUhePt .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUzqUhePt .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUzqUhePt .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUzqUhePt .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUzqUhePt .social-list {
  display: flex;
}
.cid-ulUzqUhePt .social-list a {
  transition: .3s;
}
.cid-ulUzqUhePt .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUzqUhePt .row {
  align-items: center;
}
.cid-ulUzqUhePt .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUzqUhePt .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUzqUhePt .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUzqUhePt input::-webkit-input-placeholder,
.cid-ulUzqUhePt textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUzqUhePt input:-moz-placeholder,
.cid-ulUzqUhePt textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUzqUhePt .media-content {
    padding-right: 3rem;
  }
  .cid-ulUzqUhePt .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUzqUhePt .row {
    padding: 0 1rem;
  }
}
.cid-ulUzqUhePt .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUzqUhePt .form-btn {
    width: 100%;
  }
  .cid-ulUzqUhePt .btn {
    width: 100%;
  }
}
.cid-ulUzqV526S {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUzqV526S .image-block {
  margin: auto;
}
.cid-ulUzqV526S .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUzqV526S .image-block {
    width: 100% !important;
  }
}
.cid-ulUzqV526S .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUzqV526S .container {
    padding: 0 2rem;
  }
}
.cid-ulUzqVFfRp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUzqVFfRp .media-container-row {
  align-items: center;
}
.cid-ulUzqVFfRp .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUzqVFfRp .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUzqVFfRp .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUzqVFfRp .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUzqVFfRp .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUzqVFfRp .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUzqVFfRp .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-ulUzqVFfRp .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUzqVFfRp .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUzqVFfRp .foot-menu {
    justify-content: center;
  }
  .cid-ulUzqVFfRp .mbr-text {
    text-align: center;
  }
  .cid-ulUzqVFfRp .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUzqVFfRp .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUzqVFfRp .link:hover {
  color: #ffffff;
}
.cid-ulUzqVFfRp .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUAl935Ua .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-ulUAl935Ua .nav-item:focus,
.cid-ulUAl935Ua .nav-link:focus {
  outline: none;
}
.cid-ulUAl935Ua .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-ulUAl935Ua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUAl935Ua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUAl935Ua .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-ulUAl935Ua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUAl935Ua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUAl935Ua .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUAl935Ua .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUAl935Ua .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUAl935Ua .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUAl935Ua .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUAl935Ua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUAl935Ua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUAl935Ua .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUAl935Ua .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUAl935Ua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUAl935Ua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUAl935Ua .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-ulUAl935Ua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUAl935Ua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUAl935Ua .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUAl935Ua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUAl935Ua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUAl935Ua .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUAl935Ua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUAl935Ua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUAl935Ua .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-ulUAl935Ua .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUAl935Ua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUAl935Ua .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUAl935Ua .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUAl935Ua .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUAl935Ua .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUAl935Ua .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUAl935Ua .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUAl935Ua .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUAl935Ua .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUAl935Ua .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-ulUAl935Ua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUAl935Ua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUAl935Ua .dropdown-item.active,
.cid-ulUAl935Ua .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUAl935Ua .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUAl935Ua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUAl935Ua .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUAl935Ua .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUAl935Ua .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUAl935Ua .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUAl935Ua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUAl935Ua .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUAl935Ua .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUAl935Ua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUAl935Ua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUAl935Ua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUAl935Ua ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUAl935Ua .navbar-buttons {
  text-align: center;
}
.cid-ulUAl935Ua button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUAl935Ua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUAl935Ua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUAl935Ua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUAl935Ua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUAl935Ua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUAl935Ua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUAl935Ua nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUAl935Ua nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUAl935Ua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUAl935Ua .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUAl935Ua 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-ulUAl935Ua .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUAl935Ua .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-ulUAl935Ua .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUAl935Ua .navbar {
    height: 77px;
  }
  .cid-ulUAl935Ua .navbar.opened {
    height: auto;
  }
  .cid-ulUAl935Ua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUAl935Ua 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-ulUAl935Ua a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUAl935Ua .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUAl935Ua .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUAlaghu8 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUAlaghu8 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUAlaghu8 .carousel {
    height: 100vh;
  }
}
.cid-ulUAlaghu8 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUAlaghu8 .carousel-item,
.cid-ulUAlaghu8 .carousel-inner {
  height: 100%;
}
.cid-ulUAlaghu8 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUAlaghu8 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUAlaghu8 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUAlaghu8 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUAlaghu8 .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUAlaghu8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUAlaghu8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUAlaghu8 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUAlaghu8 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUAlaghu8 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUAlaghu8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUAlaghu8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUAlaghu8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUAlaghu8 .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-ulUAlaghu8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUAlaghu8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUAlaghu8 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUAlaghu8 .carousel-control {
    display: none !important;
  }
}
.cid-ulUAlaghu8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUAlaghu8 .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-ulUAlaghu8 .carousel-indicators li.active,
.cid-ulUAlaghu8 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUAlaghu8 .carousel-indicators li::after,
.cid-ulUAlaghu8 .carousel-indicators li::before {
  content: none;
}
.cid-ulUAlaghu8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUAlaghu8 .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUAlaghu8 .mbr-section-text,
.cid-ulUAlaghu8 .mbr-section-btn {
  text-align: center;
}
.cid-ulUAlbcrzo {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUAlbcrzo .item-img {
  position: relative;
}
.cid-ulUAlbcrzo .item-img img {
  transition: all 0.2s;
}
.cid-ulUAlbcrzo .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUAlbcrzo .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUAlbcrzo .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUAlbcrzo .item:hover img {
  transform: scale(1.05);
}
.cid-ulUAlbcrzo .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUAlbcrzo .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUAlbcrzo .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUAlbcrzo .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUAlbcrzo .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUAlbcrzo .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-ulUAlbcrzo .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-ulUAlbcrzo .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUAlbcrzo .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUAlbcrzo .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUAlbcrzo .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUAlbcrzo .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUAlbcrzo .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-ulUAlbcrzo .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUAlbcrzo img,
.cid-ulUAlbcrzo .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUAlbcrzo .item:focus,
.cid-ulUAlbcrzo span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUAlbcrzo .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUAlbcrzo .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUAlbcrzo .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUAlbcrzo .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUAlbcrzo .mbr-section-subtitle,
.cid-ulUAlbcrzo .subtitle-wrap,
.cid-ulUAlbcrzo .mbr-section-btn {
  text-align: left;
}
.cid-ulUAlbcrzo .mbr-text,
.cid-ulUAlbcrzo .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUAlbWWeI .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUAlbWWeI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUAlbWWeI .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-ulUAlbWWeI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUAlbWWeI .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUAlcrI8U {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUAlcrI8U .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUAlcrI8U textarea {
  min-height: 150px;
}
.cid-ulUAlcrI8U input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUAlcrI8U textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUAlcrI8U .form-control,
.cid-ulUAlcrI8U .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-ulUAlcrI8U .form-control input::-webkit-input-placeholder,
.cid-ulUAlcrI8U .field-input input::-webkit-input-placeholder,
.cid-ulUAlcrI8U .form-control textarea::-webkit-input-placeholder,
.cid-ulUAlcrI8U .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUAlcrI8U .form-control input:-moz-placeholder,
.cid-ulUAlcrI8U .field-input input:-moz-placeholder,
.cid-ulUAlcrI8U .form-control textarea:-moz-placeholder,
.cid-ulUAlcrI8U .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUAlcrI8U .jq-number__spin:hover,
.cid-ulUAlcrI8U .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUAlcrI8U .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUAlcrI8U .jq-selectbox li,
.cid-ulUAlcrI8U .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUAlcrI8U .jq-selectbox li:hover,
.cid-ulUAlcrI8U .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUAlcrI8U .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUAlcrI8U .jq-number__spin.minus:hover:after,
.cid-ulUAlcrI8U .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUAlcrI8U .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUAlcrI8U .jq-number__spin.minus:after,
.cid-ulUAlcrI8U .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUAlcrI8U .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUAlcrI8U .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUAlcrI8U .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUAlcrI8U .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUAlcrI8U .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUAlcrI8U .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUAlcrI8U .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUAlcrI8U .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUAlcrI8U .social-list {
  display: flex;
}
.cid-ulUAlcrI8U .social-list a {
  transition: .3s;
}
.cid-ulUAlcrI8U .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUAlcrI8U .row {
  align-items: center;
}
.cid-ulUAlcrI8U .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUAlcrI8U .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUAlcrI8U .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUAlcrI8U input::-webkit-input-placeholder,
.cid-ulUAlcrI8U textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUAlcrI8U input:-moz-placeholder,
.cid-ulUAlcrI8U textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUAlcrI8U .media-content {
    padding-right: 3rem;
  }
  .cid-ulUAlcrI8U .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUAlcrI8U .row {
    padding: 0 1rem;
  }
}
.cid-ulUAlcrI8U .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUAlcrI8U .form-btn {
    width: 100%;
  }
  .cid-ulUAlcrI8U .btn {
    width: 100%;
  }
}
.cid-ulUAldm80H {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUAldm80H .image-block {
  margin: auto;
}
.cid-ulUAldm80H .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUAldm80H .image-block {
    width: 100% !important;
  }
}
.cid-ulUAldm80H .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUAldm80H .container {
    padding: 0 2rem;
  }
}
.cid-ulUAldP63c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUAldP63c .media-container-row {
  align-items: center;
}
.cid-ulUAldP63c .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUAldP63c .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUAldP63c .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUAldP63c .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUAldP63c .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUAldP63c .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUAldP63c .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-ulUAldP63c .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUAldP63c .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUAldP63c .foot-menu {
    justify-content: center;
  }
  .cid-ulUAldP63c .mbr-text {
    text-align: center;
  }
  .cid-ulUAldP63c .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUAldP63c .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUAldP63c .link:hover {
  color: #ffffff;
}
.cid-ulUAldP63c .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUAwtrORe .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-ulUAwtrORe .nav-item:focus,
.cid-ulUAwtrORe .nav-link:focus {
  outline: none;
}
.cid-ulUAwtrORe .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-ulUAwtrORe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUAwtrORe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUAwtrORe .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-ulUAwtrORe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUAwtrORe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUAwtrORe .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUAwtrORe .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUAwtrORe .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUAwtrORe .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUAwtrORe .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUAwtrORe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUAwtrORe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUAwtrORe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUAwtrORe .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUAwtrORe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUAwtrORe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUAwtrORe .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-ulUAwtrORe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUAwtrORe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUAwtrORe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUAwtrORe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUAwtrORe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUAwtrORe .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUAwtrORe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUAwtrORe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUAwtrORe .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-ulUAwtrORe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUAwtrORe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUAwtrORe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUAwtrORe .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUAwtrORe .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUAwtrORe .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUAwtrORe .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUAwtrORe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUAwtrORe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUAwtrORe .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUAwtrORe .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-ulUAwtrORe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUAwtrORe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUAwtrORe .dropdown-item.active,
.cid-ulUAwtrORe .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUAwtrORe .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUAwtrORe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUAwtrORe .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUAwtrORe .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUAwtrORe .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUAwtrORe .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUAwtrORe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUAwtrORe .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUAwtrORe .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUAwtrORe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUAwtrORe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUAwtrORe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUAwtrORe ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUAwtrORe .navbar-buttons {
  text-align: center;
}
.cid-ulUAwtrORe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUAwtrORe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUAwtrORe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUAwtrORe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUAwtrORe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUAwtrORe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUAwtrORe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUAwtrORe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUAwtrORe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUAwtrORe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUAwtrORe .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUAwtrORe 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-ulUAwtrORe .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUAwtrORe .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-ulUAwtrORe .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUAwtrORe .navbar {
    height: 77px;
  }
  .cid-ulUAwtrORe .navbar.opened {
    height: auto;
  }
  .cid-ulUAwtrORe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUAwtrORe 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-ulUAwtrORe a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUAwtrORe .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUAwtrORe .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUAwujbiI {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUAwujbiI .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUAwujbiI .carousel {
    height: 100vh;
  }
}
.cid-ulUAwujbiI .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUAwujbiI .carousel-item,
.cid-ulUAwujbiI .carousel-inner {
  height: 100%;
}
.cid-ulUAwujbiI .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUAwujbiI .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUAwujbiI .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUAwujbiI .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUAwujbiI .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUAwujbiI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUAwujbiI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUAwujbiI .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUAwujbiI .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUAwujbiI .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUAwujbiI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUAwujbiI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUAwujbiI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUAwujbiI .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-ulUAwujbiI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUAwujbiI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUAwujbiI .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUAwujbiI .carousel-control {
    display: none !important;
  }
}
.cid-ulUAwujbiI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUAwujbiI .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-ulUAwujbiI .carousel-indicators li.active,
.cid-ulUAwujbiI .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUAwujbiI .carousel-indicators li::after,
.cid-ulUAwujbiI .carousel-indicators li::before {
  content: none;
}
.cid-ulUAwujbiI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUAwujbiI .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUAwujbiI .mbr-section-text,
.cid-ulUAwujbiI .mbr-section-btn {
  text-align: center;
}
.cid-ulUAwv6oty {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUAwv6oty .item-img {
  position: relative;
}
.cid-ulUAwv6oty .item-img img {
  transition: all 0.2s;
}
.cid-ulUAwv6oty .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUAwv6oty .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUAwv6oty .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUAwv6oty .item:hover img {
  transform: scale(1.05);
}
.cid-ulUAwv6oty .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUAwv6oty .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUAwv6oty .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUAwv6oty .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUAwv6oty .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUAwv6oty .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-ulUAwv6oty .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-ulUAwv6oty .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUAwv6oty .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUAwv6oty .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUAwv6oty .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUAwv6oty .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUAwv6oty .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-ulUAwv6oty .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUAwv6oty img,
.cid-ulUAwv6oty .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUAwv6oty .item:focus,
.cid-ulUAwv6oty span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUAwv6oty .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUAwv6oty .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUAwv6oty .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUAwv6oty .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUAwv6oty .mbr-section-subtitle,
.cid-ulUAwv6oty .subtitle-wrap,
.cid-ulUAwv6oty .mbr-section-btn {
  text-align: left;
}
.cid-ulUAwv6oty .mbr-text,
.cid-ulUAwv6oty .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUAwvQI9s .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUAwvQI9s .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUAwvQI9s .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-ulUAwvQI9s .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUAwvQI9s .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUAwwmiYo {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUAwwmiYo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUAwwmiYo textarea {
  min-height: 150px;
}
.cid-ulUAwwmiYo input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUAwwmiYo textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUAwwmiYo .form-control,
.cid-ulUAwwmiYo .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-ulUAwwmiYo .form-control input::-webkit-input-placeholder,
.cid-ulUAwwmiYo .field-input input::-webkit-input-placeholder,
.cid-ulUAwwmiYo .form-control textarea::-webkit-input-placeholder,
.cid-ulUAwwmiYo .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUAwwmiYo .form-control input:-moz-placeholder,
.cid-ulUAwwmiYo .field-input input:-moz-placeholder,
.cid-ulUAwwmiYo .form-control textarea:-moz-placeholder,
.cid-ulUAwwmiYo .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUAwwmiYo .jq-number__spin:hover,
.cid-ulUAwwmiYo .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUAwwmiYo .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUAwwmiYo .jq-selectbox li,
.cid-ulUAwwmiYo .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUAwwmiYo .jq-selectbox li:hover,
.cid-ulUAwwmiYo .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUAwwmiYo .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUAwwmiYo .jq-number__spin.minus:hover:after,
.cid-ulUAwwmiYo .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUAwwmiYo .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUAwwmiYo .jq-number__spin.minus:after,
.cid-ulUAwwmiYo .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUAwwmiYo .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUAwwmiYo .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUAwwmiYo .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUAwwmiYo .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUAwwmiYo .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUAwwmiYo .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUAwwmiYo .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUAwwmiYo .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUAwwmiYo .social-list {
  display: flex;
}
.cid-ulUAwwmiYo .social-list a {
  transition: .3s;
}
.cid-ulUAwwmiYo .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUAwwmiYo .row {
  align-items: center;
}
.cid-ulUAwwmiYo .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUAwwmiYo .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUAwwmiYo .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUAwwmiYo input::-webkit-input-placeholder,
.cid-ulUAwwmiYo textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUAwwmiYo input:-moz-placeholder,
.cid-ulUAwwmiYo textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUAwwmiYo .media-content {
    padding-right: 3rem;
  }
  .cid-ulUAwwmiYo .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUAwwmiYo .row {
    padding: 0 1rem;
  }
}
.cid-ulUAwwmiYo .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUAwwmiYo .form-btn {
    width: 100%;
  }
  .cid-ulUAwwmiYo .btn {
    width: 100%;
  }
}
.cid-ulUAwxcnwW {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUAwxcnwW .image-block {
  margin: auto;
}
.cid-ulUAwxcnwW .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUAwxcnwW .image-block {
    width: 100% !important;
  }
}
.cid-ulUAwxcnwW .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUAwxcnwW .container {
    padding: 0 2rem;
  }
}
.cid-ulUAwxPOm1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUAwxPOm1 .media-container-row {
  align-items: center;
}
.cid-ulUAwxPOm1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUAwxPOm1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUAwxPOm1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUAwxPOm1 .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUAwxPOm1 .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUAwxPOm1 .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUAwxPOm1 .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-ulUAwxPOm1 .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUAwxPOm1 .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUAwxPOm1 .foot-menu {
    justify-content: center;
  }
  .cid-ulUAwxPOm1 .mbr-text {
    text-align: center;
  }
  .cid-ulUAwxPOm1 .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUAwxPOm1 .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUAwxPOm1 .link:hover {
  color: #ffffff;
}
.cid-ulUAwxPOm1 .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUAKboiPy .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-ulUAKboiPy .nav-item:focus,
.cid-ulUAKboiPy .nav-link:focus {
  outline: none;
}
.cid-ulUAKboiPy .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-ulUAKboiPy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUAKboiPy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUAKboiPy .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-ulUAKboiPy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUAKboiPy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUAKboiPy .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUAKboiPy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUAKboiPy .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUAKboiPy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUAKboiPy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUAKboiPy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUAKboiPy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUAKboiPy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUAKboiPy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUAKboiPy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUAKboiPy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUAKboiPy .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-ulUAKboiPy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUAKboiPy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUAKboiPy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUAKboiPy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUAKboiPy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUAKboiPy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUAKboiPy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUAKboiPy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUAKboiPy .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-ulUAKboiPy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUAKboiPy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUAKboiPy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUAKboiPy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUAKboiPy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUAKboiPy .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUAKboiPy .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUAKboiPy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUAKboiPy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUAKboiPy .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUAKboiPy .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-ulUAKboiPy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUAKboiPy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUAKboiPy .dropdown-item.active,
.cid-ulUAKboiPy .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUAKboiPy .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUAKboiPy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUAKboiPy .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUAKboiPy .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUAKboiPy .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUAKboiPy .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUAKboiPy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUAKboiPy .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUAKboiPy .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUAKboiPy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUAKboiPy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUAKboiPy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUAKboiPy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUAKboiPy .navbar-buttons {
  text-align: center;
}
.cid-ulUAKboiPy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUAKboiPy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUAKboiPy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUAKboiPy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUAKboiPy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUAKboiPy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUAKboiPy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUAKboiPy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUAKboiPy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUAKboiPy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUAKboiPy .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUAKboiPy 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-ulUAKboiPy .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUAKboiPy .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-ulUAKboiPy .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUAKboiPy .navbar {
    height: 77px;
  }
  .cid-ulUAKboiPy .navbar.opened {
    height: auto;
  }
  .cid-ulUAKboiPy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUAKboiPy 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-ulUAKboiPy a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUAKboiPy .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUAKboiPy .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUAKcCZtc {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUAKcCZtc .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUAKcCZtc .carousel {
    height: 100vh;
  }
}
.cid-ulUAKcCZtc .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUAKcCZtc .carousel-item,
.cid-ulUAKcCZtc .carousel-inner {
  height: 100%;
}
.cid-ulUAKcCZtc .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUAKcCZtc .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUAKcCZtc .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUAKcCZtc .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUAKcCZtc .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUAKcCZtc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUAKcCZtc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUAKcCZtc .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUAKcCZtc .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUAKcCZtc .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUAKcCZtc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUAKcCZtc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUAKcCZtc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUAKcCZtc .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-ulUAKcCZtc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUAKcCZtc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUAKcCZtc .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUAKcCZtc .carousel-control {
    display: none !important;
  }
}
.cid-ulUAKcCZtc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUAKcCZtc .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-ulUAKcCZtc .carousel-indicators li.active,
.cid-ulUAKcCZtc .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUAKcCZtc .carousel-indicators li::after,
.cid-ulUAKcCZtc .carousel-indicators li::before {
  content: none;
}
.cid-ulUAKcCZtc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUAKcCZtc .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUAKcCZtc .mbr-section-text,
.cid-ulUAKcCZtc .mbr-section-btn {
  text-align: center;
}
.cid-ulUAKdtQjB {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUAKdtQjB .item-img {
  position: relative;
}
.cid-ulUAKdtQjB .item-img img {
  transition: all 0.2s;
}
.cid-ulUAKdtQjB .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUAKdtQjB .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUAKdtQjB .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUAKdtQjB .item:hover img {
  transform: scale(1.05);
}
.cid-ulUAKdtQjB .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUAKdtQjB .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUAKdtQjB .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUAKdtQjB .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUAKdtQjB .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUAKdtQjB .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-ulUAKdtQjB .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-ulUAKdtQjB .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUAKdtQjB .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUAKdtQjB .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUAKdtQjB .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUAKdtQjB .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUAKdtQjB .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-ulUAKdtQjB .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUAKdtQjB img,
.cid-ulUAKdtQjB .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUAKdtQjB .item:focus,
.cid-ulUAKdtQjB span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUAKdtQjB .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUAKdtQjB .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUAKdtQjB .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUAKdtQjB .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUAKdtQjB .mbr-section-subtitle,
.cid-ulUAKdtQjB .subtitle-wrap,
.cid-ulUAKdtQjB .mbr-section-btn {
  text-align: left;
}
.cid-ulUAKdtQjB .mbr-text,
.cid-ulUAKdtQjB .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUAKepzvg .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUAKepzvg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUAKepzvg .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-ulUAKepzvg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUAKepzvg .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUAKeUZgU {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUAKeUZgU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUAKeUZgU textarea {
  min-height: 150px;
}
.cid-ulUAKeUZgU input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUAKeUZgU textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUAKeUZgU .form-control,
.cid-ulUAKeUZgU .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-ulUAKeUZgU .form-control input::-webkit-input-placeholder,
.cid-ulUAKeUZgU .field-input input::-webkit-input-placeholder,
.cid-ulUAKeUZgU .form-control textarea::-webkit-input-placeholder,
.cid-ulUAKeUZgU .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUAKeUZgU .form-control input:-moz-placeholder,
.cid-ulUAKeUZgU .field-input input:-moz-placeholder,
.cid-ulUAKeUZgU .form-control textarea:-moz-placeholder,
.cid-ulUAKeUZgU .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUAKeUZgU .jq-number__spin:hover,
.cid-ulUAKeUZgU .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUAKeUZgU .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUAKeUZgU .jq-selectbox li,
.cid-ulUAKeUZgU .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUAKeUZgU .jq-selectbox li:hover,
.cid-ulUAKeUZgU .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUAKeUZgU .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUAKeUZgU .jq-number__spin.minus:hover:after,
.cid-ulUAKeUZgU .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUAKeUZgU .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUAKeUZgU .jq-number__spin.minus:after,
.cid-ulUAKeUZgU .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUAKeUZgU .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUAKeUZgU .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUAKeUZgU .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUAKeUZgU .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUAKeUZgU .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUAKeUZgU .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUAKeUZgU .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUAKeUZgU .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUAKeUZgU .social-list {
  display: flex;
}
.cid-ulUAKeUZgU .social-list a {
  transition: .3s;
}
.cid-ulUAKeUZgU .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUAKeUZgU .row {
  align-items: center;
}
.cid-ulUAKeUZgU .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUAKeUZgU .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUAKeUZgU .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUAKeUZgU input::-webkit-input-placeholder,
.cid-ulUAKeUZgU textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUAKeUZgU input:-moz-placeholder,
.cid-ulUAKeUZgU textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUAKeUZgU .media-content {
    padding-right: 3rem;
  }
  .cid-ulUAKeUZgU .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUAKeUZgU .row {
    padding: 0 1rem;
  }
}
.cid-ulUAKeUZgU .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUAKeUZgU .form-btn {
    width: 100%;
  }
  .cid-ulUAKeUZgU .btn {
    width: 100%;
  }
}
.cid-ulUAKfDF9B {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUAKfDF9B .image-block {
  margin: auto;
}
.cid-ulUAKfDF9B .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUAKfDF9B .image-block {
    width: 100% !important;
  }
}
.cid-ulUAKfDF9B .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUAKfDF9B .container {
    padding: 0 2rem;
  }
}
.cid-ulUAKgbI8z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUAKgbI8z .media-container-row {
  align-items: center;
}
.cid-ulUAKgbI8z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUAKgbI8z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUAKgbI8z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUAKgbI8z .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUAKgbI8z .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUAKgbI8z .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUAKgbI8z .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-ulUAKgbI8z .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUAKgbI8z .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUAKgbI8z .foot-menu {
    justify-content: center;
  }
  .cid-ulUAKgbI8z .mbr-text {
    text-align: center;
  }
  .cid-ulUAKgbI8z .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUAKgbI8z .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUAKgbI8z .link:hover {
  color: #ffffff;
}
.cid-ulUAKgbI8z .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUBaZT2U2 .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-ulUBaZT2U2 .nav-item:focus,
.cid-ulUBaZT2U2 .nav-link:focus {
  outline: none;
}
.cid-ulUBaZT2U2 .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-ulUBaZT2U2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUBaZT2U2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUBaZT2U2 .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-ulUBaZT2U2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUBaZT2U2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUBaZT2U2 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUBaZT2U2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUBaZT2U2 .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUBaZT2U2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUBaZT2U2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUBaZT2U2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUBaZT2U2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUBaZT2U2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUBaZT2U2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUBaZT2U2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUBaZT2U2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUBaZT2U2 .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-ulUBaZT2U2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUBaZT2U2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUBaZT2U2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUBaZT2U2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUBaZT2U2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUBaZT2U2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUBaZT2U2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUBaZT2U2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUBaZT2U2 .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-ulUBaZT2U2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUBaZT2U2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUBaZT2U2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUBaZT2U2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUBaZT2U2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUBaZT2U2 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUBaZT2U2 .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUBaZT2U2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUBaZT2U2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUBaZT2U2 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUBaZT2U2 .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-ulUBaZT2U2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUBaZT2U2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUBaZT2U2 .dropdown-item.active,
.cid-ulUBaZT2U2 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUBaZT2U2 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUBaZT2U2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBaZT2U2 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUBaZT2U2 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUBaZT2U2 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUBaZT2U2 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUBaZT2U2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBaZT2U2 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUBaZT2U2 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUBaZT2U2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUBaZT2U2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUBaZT2U2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUBaZT2U2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUBaZT2U2 .navbar-buttons {
  text-align: center;
}
.cid-ulUBaZT2U2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUBaZT2U2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUBaZT2U2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUBaZT2U2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBaZT2U2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBaZT2U2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUBaZT2U2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBaZT2U2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUBaZT2U2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUBaZT2U2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBaZT2U2 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUBaZT2U2 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-ulUBaZT2U2 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUBaZT2U2 .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-ulUBaZT2U2 .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUBaZT2U2 .navbar {
    height: 77px;
  }
  .cid-ulUBaZT2U2 .navbar.opened {
    height: auto;
  }
  .cid-ulUBaZT2U2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUBaZT2U2 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-ulUBaZT2U2 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUBaZT2U2 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUBaZT2U2 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUBb0MZf1 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUBb0MZf1 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUBb0MZf1 .carousel {
    height: 100vh;
  }
}
.cid-ulUBb0MZf1 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUBb0MZf1 .carousel-item,
.cid-ulUBb0MZf1 .carousel-inner {
  height: 100%;
}
.cid-ulUBb0MZf1 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUBb0MZf1 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUBb0MZf1 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUBb0MZf1 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUBb0MZf1 .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUBb0MZf1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUBb0MZf1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUBb0MZf1 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUBb0MZf1 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUBb0MZf1 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBb0MZf1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUBb0MZf1 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUBb0MZf1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUBb0MZf1 .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-ulUBb0MZf1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBb0MZf1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBb0MZf1 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUBb0MZf1 .carousel-control {
    display: none !important;
  }
}
.cid-ulUBb0MZf1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUBb0MZf1 .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-ulUBb0MZf1 .carousel-indicators li.active,
.cid-ulUBb0MZf1 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUBb0MZf1 .carousel-indicators li::after,
.cid-ulUBb0MZf1 .carousel-indicators li::before {
  content: none;
}
.cid-ulUBb0MZf1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUBb0MZf1 .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUBb0MZf1 .mbr-section-text,
.cid-ulUBb0MZf1 .mbr-section-btn {
  text-align: center;
}
.cid-ulUBb1y3ET {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUBb1y3ET .item-img {
  position: relative;
}
.cid-ulUBb1y3ET .item-img img {
  transition: all 0.2s;
}
.cid-ulUBb1y3ET .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUBb1y3ET .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUBb1y3ET .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUBb1y3ET .item:hover img {
  transform: scale(1.05);
}
.cid-ulUBb1y3ET .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUBb1y3ET .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUBb1y3ET .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUBb1y3ET .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUBb1y3ET .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUBb1y3ET .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-ulUBb1y3ET .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-ulUBb1y3ET .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUBb1y3ET .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUBb1y3ET .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUBb1y3ET .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUBb1y3ET .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUBb1y3ET .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-ulUBb1y3ET .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUBb1y3ET img,
.cid-ulUBb1y3ET .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUBb1y3ET .item:focus,
.cid-ulUBb1y3ET span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUBb1y3ET .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUBb1y3ET .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUBb1y3ET .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBb1y3ET .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBb1y3ET .mbr-section-subtitle,
.cid-ulUBb1y3ET .subtitle-wrap,
.cid-ulUBb1y3ET .mbr-section-btn {
  text-align: left;
}
.cid-ulUBb1y3ET .mbr-text,
.cid-ulUBb1y3ET .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUBb2fGsU .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUBb2fGsU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUBb2fGsU .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-ulUBb2fGsU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUBb2fGsU .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUBb2NJIk {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUBb2NJIk .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUBb2NJIk textarea {
  min-height: 150px;
}
.cid-ulUBb2NJIk input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUBb2NJIk textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUBb2NJIk .form-control,
.cid-ulUBb2NJIk .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-ulUBb2NJIk .form-control input::-webkit-input-placeholder,
.cid-ulUBb2NJIk .field-input input::-webkit-input-placeholder,
.cid-ulUBb2NJIk .form-control textarea::-webkit-input-placeholder,
.cid-ulUBb2NJIk .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBb2NJIk .form-control input:-moz-placeholder,
.cid-ulUBb2NJIk .field-input input:-moz-placeholder,
.cid-ulUBb2NJIk .form-control textarea:-moz-placeholder,
.cid-ulUBb2NJIk .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUBb2NJIk .jq-number__spin:hover,
.cid-ulUBb2NJIk .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUBb2NJIk .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUBb2NJIk .jq-selectbox li,
.cid-ulUBb2NJIk .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBb2NJIk .jq-selectbox li:hover,
.cid-ulUBb2NJIk .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBb2NJIk .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUBb2NJIk .jq-number__spin.minus:hover:after,
.cid-ulUBb2NJIk .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUBb2NJIk .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUBb2NJIk .jq-number__spin.minus:after,
.cid-ulUBb2NJIk .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUBb2NJIk .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUBb2NJIk .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUBb2NJIk .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUBb2NJIk .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUBb2NJIk .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUBb2NJIk .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUBb2NJIk .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUBb2NJIk .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUBb2NJIk .social-list {
  display: flex;
}
.cid-ulUBb2NJIk .social-list a {
  transition: .3s;
}
.cid-ulUBb2NJIk .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUBb2NJIk .row {
  align-items: center;
}
.cid-ulUBb2NJIk .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUBb2NJIk .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUBb2NJIk .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUBb2NJIk input::-webkit-input-placeholder,
.cid-ulUBb2NJIk textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBb2NJIk input:-moz-placeholder,
.cid-ulUBb2NJIk textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUBb2NJIk .media-content {
    padding-right: 3rem;
  }
  .cid-ulUBb2NJIk .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUBb2NJIk .row {
    padding: 0 1rem;
  }
}
.cid-ulUBb2NJIk .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUBb2NJIk .form-btn {
    width: 100%;
  }
  .cid-ulUBb2NJIk .btn {
    width: 100%;
  }
}
.cid-ulUBb3yb8F {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUBb3yb8F .image-block {
  margin: auto;
}
.cid-ulUBb3yb8F .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBb3yb8F .image-block {
    width: 100% !important;
  }
}
.cid-ulUBb3yb8F .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUBb3yb8F .container {
    padding: 0 2rem;
  }
}
.cid-ulUBb4cVyM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUBb4cVyM .media-container-row {
  align-items: center;
}
.cid-ulUBb4cVyM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUBb4cVyM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUBb4cVyM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUBb4cVyM .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUBb4cVyM .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUBb4cVyM .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUBb4cVyM .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-ulUBb4cVyM .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUBb4cVyM .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUBb4cVyM .foot-menu {
    justify-content: center;
  }
  .cid-ulUBb4cVyM .mbr-text {
    text-align: center;
  }
  .cid-ulUBb4cVyM .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUBb4cVyM .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUBb4cVyM .link:hover {
  color: #ffffff;
}
.cid-ulUBb4cVyM .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUBo3JsYH .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-ulUBo3JsYH .nav-item:focus,
.cid-ulUBo3JsYH .nav-link:focus {
  outline: none;
}
.cid-ulUBo3JsYH .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-ulUBo3JsYH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUBo3JsYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUBo3JsYH .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-ulUBo3JsYH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUBo3JsYH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUBo3JsYH .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUBo3JsYH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUBo3JsYH .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUBo3JsYH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUBo3JsYH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUBo3JsYH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUBo3JsYH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUBo3JsYH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUBo3JsYH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUBo3JsYH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUBo3JsYH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUBo3JsYH .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-ulUBo3JsYH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUBo3JsYH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUBo3JsYH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUBo3JsYH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUBo3JsYH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUBo3JsYH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUBo3JsYH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUBo3JsYH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUBo3JsYH .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-ulUBo3JsYH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUBo3JsYH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUBo3JsYH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUBo3JsYH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUBo3JsYH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUBo3JsYH .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUBo3JsYH .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUBo3JsYH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUBo3JsYH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUBo3JsYH .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUBo3JsYH .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-ulUBo3JsYH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUBo3JsYH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUBo3JsYH .dropdown-item.active,
.cid-ulUBo3JsYH .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUBo3JsYH .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUBo3JsYH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBo3JsYH .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUBo3JsYH .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUBo3JsYH .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUBo3JsYH .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUBo3JsYH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBo3JsYH .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUBo3JsYH .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUBo3JsYH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUBo3JsYH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUBo3JsYH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUBo3JsYH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUBo3JsYH .navbar-buttons {
  text-align: center;
}
.cid-ulUBo3JsYH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUBo3JsYH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUBo3JsYH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUBo3JsYH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBo3JsYH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBo3JsYH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUBo3JsYH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBo3JsYH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUBo3JsYH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUBo3JsYH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBo3JsYH .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUBo3JsYH 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-ulUBo3JsYH .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUBo3JsYH .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-ulUBo3JsYH .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUBo3JsYH .navbar {
    height: 77px;
  }
  .cid-ulUBo3JsYH .navbar.opened {
    height: auto;
  }
  .cid-ulUBo3JsYH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUBo3JsYH 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-ulUBo3JsYH a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUBo3JsYH .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUBo3JsYH .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUBo4ypAE {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUBo4ypAE .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUBo4ypAE .carousel {
    height: 100vh;
  }
}
.cid-ulUBo4ypAE .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUBo4ypAE .carousel-item,
.cid-ulUBo4ypAE .carousel-inner {
  height: 100%;
}
.cid-ulUBo4ypAE .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUBo4ypAE .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUBo4ypAE .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUBo4ypAE .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUBo4ypAE .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUBo4ypAE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUBo4ypAE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUBo4ypAE .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUBo4ypAE .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUBo4ypAE .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBo4ypAE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUBo4ypAE .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUBo4ypAE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUBo4ypAE .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-ulUBo4ypAE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBo4ypAE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBo4ypAE .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUBo4ypAE .carousel-control {
    display: none !important;
  }
}
.cid-ulUBo4ypAE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUBo4ypAE .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-ulUBo4ypAE .carousel-indicators li.active,
.cid-ulUBo4ypAE .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUBo4ypAE .carousel-indicators li::after,
.cid-ulUBo4ypAE .carousel-indicators li::before {
  content: none;
}
.cid-ulUBo4ypAE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUBo4ypAE .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUBo4ypAE .mbr-section-text,
.cid-ulUBo4ypAE .mbr-section-btn {
  text-align: center;
}
.cid-ulUBo5luzf {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUBo5luzf .item-img {
  position: relative;
}
.cid-ulUBo5luzf .item-img img {
  transition: all 0.2s;
}
.cid-ulUBo5luzf .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUBo5luzf .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUBo5luzf .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUBo5luzf .item:hover img {
  transform: scale(1.05);
}
.cid-ulUBo5luzf .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUBo5luzf .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUBo5luzf .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUBo5luzf .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUBo5luzf .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUBo5luzf .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-ulUBo5luzf .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-ulUBo5luzf .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUBo5luzf .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUBo5luzf .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUBo5luzf .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUBo5luzf .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUBo5luzf .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-ulUBo5luzf .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUBo5luzf img,
.cid-ulUBo5luzf .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUBo5luzf .item:focus,
.cid-ulUBo5luzf span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUBo5luzf .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUBo5luzf .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUBo5luzf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBo5luzf .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBo5luzf .mbr-section-subtitle,
.cid-ulUBo5luzf .subtitle-wrap,
.cid-ulUBo5luzf .mbr-section-btn {
  text-align: left;
}
.cid-ulUBo5luzf .mbr-text,
.cid-ulUBo5luzf .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUBo60V6n .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUBo60V6n .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUBo60V6n .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-ulUBo60V6n .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUBo60V6n .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUBo6AhYN {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUBo6AhYN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUBo6AhYN textarea {
  min-height: 150px;
}
.cid-ulUBo6AhYN input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUBo6AhYN textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUBo6AhYN .form-control,
.cid-ulUBo6AhYN .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-ulUBo6AhYN .form-control input::-webkit-input-placeholder,
.cid-ulUBo6AhYN .field-input input::-webkit-input-placeholder,
.cid-ulUBo6AhYN .form-control textarea::-webkit-input-placeholder,
.cid-ulUBo6AhYN .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBo6AhYN .form-control input:-moz-placeholder,
.cid-ulUBo6AhYN .field-input input:-moz-placeholder,
.cid-ulUBo6AhYN .form-control textarea:-moz-placeholder,
.cid-ulUBo6AhYN .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUBo6AhYN .jq-number__spin:hover,
.cid-ulUBo6AhYN .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUBo6AhYN .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUBo6AhYN .jq-selectbox li,
.cid-ulUBo6AhYN .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBo6AhYN .jq-selectbox li:hover,
.cid-ulUBo6AhYN .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBo6AhYN .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUBo6AhYN .jq-number__spin.minus:hover:after,
.cid-ulUBo6AhYN .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUBo6AhYN .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUBo6AhYN .jq-number__spin.minus:after,
.cid-ulUBo6AhYN .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUBo6AhYN .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUBo6AhYN .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUBo6AhYN .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUBo6AhYN .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUBo6AhYN .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUBo6AhYN .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUBo6AhYN .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUBo6AhYN .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUBo6AhYN .social-list {
  display: flex;
}
.cid-ulUBo6AhYN .social-list a {
  transition: .3s;
}
.cid-ulUBo6AhYN .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUBo6AhYN .row {
  align-items: center;
}
.cid-ulUBo6AhYN .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUBo6AhYN .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUBo6AhYN .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUBo6AhYN input::-webkit-input-placeholder,
.cid-ulUBo6AhYN textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBo6AhYN input:-moz-placeholder,
.cid-ulUBo6AhYN textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUBo6AhYN .media-content {
    padding-right: 3rem;
  }
  .cid-ulUBo6AhYN .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUBo6AhYN .row {
    padding: 0 1rem;
  }
}
.cid-ulUBo6AhYN .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUBo6AhYN .form-btn {
    width: 100%;
  }
  .cid-ulUBo6AhYN .btn {
    width: 100%;
  }
}
.cid-ulUBo7ojme {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUBo7ojme .image-block {
  margin: auto;
}
.cid-ulUBo7ojme .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBo7ojme .image-block {
    width: 100% !important;
  }
}
.cid-ulUBo7ojme .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUBo7ojme .container {
    padding: 0 2rem;
  }
}
.cid-ulUBo7Ywnf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUBo7Ywnf .media-container-row {
  align-items: center;
}
.cid-ulUBo7Ywnf .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUBo7Ywnf .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUBo7Ywnf .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUBo7Ywnf .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUBo7Ywnf .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUBo7Ywnf .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUBo7Ywnf .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-ulUBo7Ywnf .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUBo7Ywnf .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUBo7Ywnf .foot-menu {
    justify-content: center;
  }
  .cid-ulUBo7Ywnf .mbr-text {
    text-align: center;
  }
  .cid-ulUBo7Ywnf .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUBo7Ywnf .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUBo7Ywnf .link:hover {
  color: #ffffff;
}
.cid-ulUBo7Ywnf .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUBvJPpcq .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-ulUBvJPpcq .nav-item:focus,
.cid-ulUBvJPpcq .nav-link:focus {
  outline: none;
}
.cid-ulUBvJPpcq .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-ulUBvJPpcq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUBvJPpcq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUBvJPpcq .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-ulUBvJPpcq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUBvJPpcq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUBvJPpcq .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUBvJPpcq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUBvJPpcq .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUBvJPpcq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUBvJPpcq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUBvJPpcq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUBvJPpcq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUBvJPpcq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUBvJPpcq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUBvJPpcq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUBvJPpcq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUBvJPpcq .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-ulUBvJPpcq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUBvJPpcq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUBvJPpcq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUBvJPpcq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUBvJPpcq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUBvJPpcq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUBvJPpcq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUBvJPpcq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUBvJPpcq .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-ulUBvJPpcq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUBvJPpcq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUBvJPpcq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUBvJPpcq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUBvJPpcq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUBvJPpcq .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUBvJPpcq .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUBvJPpcq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUBvJPpcq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUBvJPpcq .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUBvJPpcq .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-ulUBvJPpcq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUBvJPpcq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUBvJPpcq .dropdown-item.active,
.cid-ulUBvJPpcq .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUBvJPpcq .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUBvJPpcq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBvJPpcq .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUBvJPpcq .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUBvJPpcq .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUBvJPpcq .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUBvJPpcq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBvJPpcq .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUBvJPpcq .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUBvJPpcq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUBvJPpcq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUBvJPpcq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUBvJPpcq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUBvJPpcq .navbar-buttons {
  text-align: center;
}
.cid-ulUBvJPpcq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUBvJPpcq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUBvJPpcq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUBvJPpcq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBvJPpcq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBvJPpcq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUBvJPpcq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBvJPpcq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUBvJPpcq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUBvJPpcq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBvJPpcq .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUBvJPpcq 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-ulUBvJPpcq .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUBvJPpcq .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-ulUBvJPpcq .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUBvJPpcq .navbar {
    height: 77px;
  }
  .cid-ulUBvJPpcq .navbar.opened {
    height: auto;
  }
  .cid-ulUBvJPpcq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUBvJPpcq 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-ulUBvJPpcq a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUBvJPpcq .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUBvJPpcq .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUBvKJO5o {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUBvKJO5o .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUBvKJO5o .carousel {
    height: 100vh;
  }
}
.cid-ulUBvKJO5o .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUBvKJO5o .carousel-item,
.cid-ulUBvKJO5o .carousel-inner {
  height: 100%;
}
.cid-ulUBvKJO5o .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUBvKJO5o .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUBvKJO5o .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUBvKJO5o .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUBvKJO5o .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUBvKJO5o .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUBvKJO5o .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUBvKJO5o .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUBvKJO5o .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUBvKJO5o .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBvKJO5o .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUBvKJO5o .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUBvKJO5o .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUBvKJO5o .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-ulUBvKJO5o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBvKJO5o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBvKJO5o .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUBvKJO5o .carousel-control {
    display: none !important;
  }
}
.cid-ulUBvKJO5o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUBvKJO5o .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-ulUBvKJO5o .carousel-indicators li.active,
.cid-ulUBvKJO5o .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUBvKJO5o .carousel-indicators li::after,
.cid-ulUBvKJO5o .carousel-indicators li::before {
  content: none;
}
.cid-ulUBvKJO5o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUBvKJO5o .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUBvKJO5o .mbr-section-text,
.cid-ulUBvKJO5o .mbr-section-btn {
  text-align: center;
}
.cid-ulUBvLv2dS {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUBvLv2dS .item-img {
  position: relative;
}
.cid-ulUBvLv2dS .item-img img {
  transition: all 0.2s;
}
.cid-ulUBvLv2dS .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUBvLv2dS .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUBvLv2dS .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUBvLv2dS .item:hover img {
  transform: scale(1.05);
}
.cid-ulUBvLv2dS .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUBvLv2dS .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUBvLv2dS .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUBvLv2dS .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUBvLv2dS .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUBvLv2dS .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-ulUBvLv2dS .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-ulUBvLv2dS .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUBvLv2dS .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUBvLv2dS .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUBvLv2dS .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUBvLv2dS .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUBvLv2dS .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-ulUBvLv2dS .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUBvLv2dS img,
.cid-ulUBvLv2dS .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUBvLv2dS .item:focus,
.cid-ulUBvLv2dS span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUBvLv2dS .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUBvLv2dS .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUBvLv2dS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBvLv2dS .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBvLv2dS .mbr-section-subtitle,
.cid-ulUBvLv2dS .subtitle-wrap,
.cid-ulUBvLv2dS .mbr-section-btn {
  text-align: left;
}
.cid-ulUBvLv2dS .mbr-text,
.cid-ulUBvLv2dS .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUBvMevY1 .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUBvMevY1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUBvMevY1 .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-ulUBvMevY1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUBvMevY1 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUBvMOf3F {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUBvMOf3F .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUBvMOf3F textarea {
  min-height: 150px;
}
.cid-ulUBvMOf3F input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUBvMOf3F textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUBvMOf3F .form-control,
.cid-ulUBvMOf3F .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-ulUBvMOf3F .form-control input::-webkit-input-placeholder,
.cid-ulUBvMOf3F .field-input input::-webkit-input-placeholder,
.cid-ulUBvMOf3F .form-control textarea::-webkit-input-placeholder,
.cid-ulUBvMOf3F .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBvMOf3F .form-control input:-moz-placeholder,
.cid-ulUBvMOf3F .field-input input:-moz-placeholder,
.cid-ulUBvMOf3F .form-control textarea:-moz-placeholder,
.cid-ulUBvMOf3F .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUBvMOf3F .jq-number__spin:hover,
.cid-ulUBvMOf3F .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUBvMOf3F .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUBvMOf3F .jq-selectbox li,
.cid-ulUBvMOf3F .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBvMOf3F .jq-selectbox li:hover,
.cid-ulUBvMOf3F .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBvMOf3F .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUBvMOf3F .jq-number__spin.minus:hover:after,
.cid-ulUBvMOf3F .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUBvMOf3F .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUBvMOf3F .jq-number__spin.minus:after,
.cid-ulUBvMOf3F .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUBvMOf3F .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUBvMOf3F .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUBvMOf3F .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUBvMOf3F .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUBvMOf3F .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUBvMOf3F .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUBvMOf3F .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUBvMOf3F .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUBvMOf3F .social-list {
  display: flex;
}
.cid-ulUBvMOf3F .social-list a {
  transition: .3s;
}
.cid-ulUBvMOf3F .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUBvMOf3F .row {
  align-items: center;
}
.cid-ulUBvMOf3F .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUBvMOf3F .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUBvMOf3F .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUBvMOf3F input::-webkit-input-placeholder,
.cid-ulUBvMOf3F textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBvMOf3F input:-moz-placeholder,
.cid-ulUBvMOf3F textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUBvMOf3F .media-content {
    padding-right: 3rem;
  }
  .cid-ulUBvMOf3F .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUBvMOf3F .row {
    padding: 0 1rem;
  }
}
.cid-ulUBvMOf3F .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUBvMOf3F .form-btn {
    width: 100%;
  }
  .cid-ulUBvMOf3F .btn {
    width: 100%;
  }
}
.cid-ulUBvNB2OK {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUBvNB2OK .image-block {
  margin: auto;
}
.cid-ulUBvNB2OK .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBvNB2OK .image-block {
    width: 100% !important;
  }
}
.cid-ulUBvNB2OK .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUBvNB2OK .container {
    padding: 0 2rem;
  }
}
.cid-ulUBvOmblv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUBvOmblv .media-container-row {
  align-items: center;
}
.cid-ulUBvOmblv .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUBvOmblv .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUBvOmblv .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUBvOmblv .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUBvOmblv .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUBvOmblv .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUBvOmblv .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-ulUBvOmblv .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUBvOmblv .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUBvOmblv .foot-menu {
    justify-content: center;
  }
  .cid-ulUBvOmblv .mbr-text {
    text-align: center;
  }
  .cid-ulUBvOmblv .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUBvOmblv .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUBvOmblv .link:hover {
  color: #ffffff;
}
.cid-ulUBvOmblv .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUBCY47K8 .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-ulUBCY47K8 .nav-item:focus,
.cid-ulUBCY47K8 .nav-link:focus {
  outline: none;
}
.cid-ulUBCY47K8 .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-ulUBCY47K8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUBCY47K8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUBCY47K8 .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-ulUBCY47K8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUBCY47K8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUBCY47K8 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUBCY47K8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUBCY47K8 .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUBCY47K8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUBCY47K8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUBCY47K8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUBCY47K8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUBCY47K8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUBCY47K8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUBCY47K8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUBCY47K8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUBCY47K8 .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-ulUBCY47K8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUBCY47K8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUBCY47K8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUBCY47K8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUBCY47K8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUBCY47K8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUBCY47K8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUBCY47K8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUBCY47K8 .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-ulUBCY47K8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUBCY47K8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUBCY47K8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUBCY47K8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUBCY47K8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUBCY47K8 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUBCY47K8 .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUBCY47K8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUBCY47K8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUBCY47K8 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUBCY47K8 .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-ulUBCY47K8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUBCY47K8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUBCY47K8 .dropdown-item.active,
.cid-ulUBCY47K8 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUBCY47K8 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUBCY47K8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBCY47K8 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUBCY47K8 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUBCY47K8 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUBCY47K8 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUBCY47K8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBCY47K8 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUBCY47K8 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUBCY47K8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUBCY47K8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUBCY47K8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUBCY47K8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUBCY47K8 .navbar-buttons {
  text-align: center;
}
.cid-ulUBCY47K8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUBCY47K8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUBCY47K8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUBCY47K8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBCY47K8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBCY47K8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUBCY47K8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBCY47K8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUBCY47K8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUBCY47K8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBCY47K8 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUBCY47K8 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-ulUBCY47K8 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUBCY47K8 .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-ulUBCY47K8 .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUBCY47K8 .navbar {
    height: 77px;
  }
  .cid-ulUBCY47K8 .navbar.opened {
    height: auto;
  }
  .cid-ulUBCY47K8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUBCY47K8 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-ulUBCY47K8 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUBCY47K8 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUBCY47K8 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUBCZ8BmO {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUBCZ8BmO .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUBCZ8BmO .carousel {
    height: 100vh;
  }
}
.cid-ulUBCZ8BmO .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUBCZ8BmO .carousel-item,
.cid-ulUBCZ8BmO .carousel-inner {
  height: 100%;
}
.cid-ulUBCZ8BmO .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUBCZ8BmO .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUBCZ8BmO .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUBCZ8BmO .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUBCZ8BmO .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUBCZ8BmO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUBCZ8BmO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUBCZ8BmO .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUBCZ8BmO .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUBCZ8BmO .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBCZ8BmO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUBCZ8BmO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUBCZ8BmO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUBCZ8BmO .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-ulUBCZ8BmO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBCZ8BmO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBCZ8BmO .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUBCZ8BmO .carousel-control {
    display: none !important;
  }
}
.cid-ulUBCZ8BmO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUBCZ8BmO .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-ulUBCZ8BmO .carousel-indicators li.active,
.cid-ulUBCZ8BmO .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUBCZ8BmO .carousel-indicators li::after,
.cid-ulUBCZ8BmO .carousel-indicators li::before {
  content: none;
}
.cid-ulUBCZ8BmO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUBCZ8BmO .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUBCZ8BmO .mbr-section-text,
.cid-ulUBCZ8BmO .mbr-section-btn {
  text-align: center;
}
.cid-ulUBD04duk {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUBD04duk .item-img {
  position: relative;
}
.cid-ulUBD04duk .item-img img {
  transition: all 0.2s;
}
.cid-ulUBD04duk .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUBD04duk .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUBD04duk .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUBD04duk .item:hover img {
  transform: scale(1.05);
}
.cid-ulUBD04duk .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUBD04duk .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUBD04duk .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUBD04duk .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUBD04duk .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUBD04duk .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-ulUBD04duk .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-ulUBD04duk .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUBD04duk .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUBD04duk .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUBD04duk .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUBD04duk .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUBD04duk .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-ulUBD04duk .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUBD04duk img,
.cid-ulUBD04duk .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUBD04duk .item:focus,
.cid-ulUBD04duk span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUBD04duk .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUBD04duk .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUBD04duk .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBD04duk .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBD04duk .mbr-section-subtitle,
.cid-ulUBD04duk .subtitle-wrap,
.cid-ulUBD04duk .mbr-section-btn {
  text-align: left;
}
.cid-ulUBD04duk .mbr-text,
.cid-ulUBD04duk .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUBD0KBNi .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUBD0KBNi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUBD0KBNi .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-ulUBD0KBNi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUBD0KBNi .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUBD1dQI0 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUBD1dQI0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUBD1dQI0 textarea {
  min-height: 150px;
}
.cid-ulUBD1dQI0 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUBD1dQI0 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUBD1dQI0 .form-control,
.cid-ulUBD1dQI0 .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-ulUBD1dQI0 .form-control input::-webkit-input-placeholder,
.cid-ulUBD1dQI0 .field-input input::-webkit-input-placeholder,
.cid-ulUBD1dQI0 .form-control textarea::-webkit-input-placeholder,
.cid-ulUBD1dQI0 .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBD1dQI0 .form-control input:-moz-placeholder,
.cid-ulUBD1dQI0 .field-input input:-moz-placeholder,
.cid-ulUBD1dQI0 .form-control textarea:-moz-placeholder,
.cid-ulUBD1dQI0 .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUBD1dQI0 .jq-number__spin:hover,
.cid-ulUBD1dQI0 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUBD1dQI0 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUBD1dQI0 .jq-selectbox li,
.cid-ulUBD1dQI0 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBD1dQI0 .jq-selectbox li:hover,
.cid-ulUBD1dQI0 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBD1dQI0 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUBD1dQI0 .jq-number__spin.minus:hover:after,
.cid-ulUBD1dQI0 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUBD1dQI0 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUBD1dQI0 .jq-number__spin.minus:after,
.cid-ulUBD1dQI0 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUBD1dQI0 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUBD1dQI0 .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUBD1dQI0 .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUBD1dQI0 .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUBD1dQI0 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUBD1dQI0 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUBD1dQI0 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUBD1dQI0 .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUBD1dQI0 .social-list {
  display: flex;
}
.cid-ulUBD1dQI0 .social-list a {
  transition: .3s;
}
.cid-ulUBD1dQI0 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUBD1dQI0 .row {
  align-items: center;
}
.cid-ulUBD1dQI0 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUBD1dQI0 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUBD1dQI0 .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUBD1dQI0 input::-webkit-input-placeholder,
.cid-ulUBD1dQI0 textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBD1dQI0 input:-moz-placeholder,
.cid-ulUBD1dQI0 textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUBD1dQI0 .media-content {
    padding-right: 3rem;
  }
  .cid-ulUBD1dQI0 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUBD1dQI0 .row {
    padding: 0 1rem;
  }
}
.cid-ulUBD1dQI0 .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUBD1dQI0 .form-btn {
    width: 100%;
  }
  .cid-ulUBD1dQI0 .btn {
    width: 100%;
  }
}
.cid-ulUBD1VZ8s {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUBD1VZ8s .image-block {
  margin: auto;
}
.cid-ulUBD1VZ8s .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBD1VZ8s .image-block {
    width: 100% !important;
  }
}
.cid-ulUBD1VZ8s .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUBD1VZ8s .container {
    padding: 0 2rem;
  }
}
.cid-ulUBD2zDfq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUBD2zDfq .media-container-row {
  align-items: center;
}
.cid-ulUBD2zDfq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUBD2zDfq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUBD2zDfq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUBD2zDfq .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUBD2zDfq .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUBD2zDfq .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUBD2zDfq .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-ulUBD2zDfq .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUBD2zDfq .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUBD2zDfq .foot-menu {
    justify-content: center;
  }
  .cid-ulUBD2zDfq .mbr-text {
    text-align: center;
  }
  .cid-ulUBD2zDfq .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUBD2zDfq .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUBD2zDfq .link:hover {
  color: #ffffff;
}
.cid-ulUBD2zDfq .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUBObcyIR .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-ulUBObcyIR .nav-item:focus,
.cid-ulUBObcyIR .nav-link:focus {
  outline: none;
}
.cid-ulUBObcyIR .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-ulUBObcyIR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUBObcyIR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUBObcyIR .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-ulUBObcyIR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUBObcyIR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUBObcyIR .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUBObcyIR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUBObcyIR .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUBObcyIR .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUBObcyIR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUBObcyIR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUBObcyIR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUBObcyIR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUBObcyIR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUBObcyIR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUBObcyIR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUBObcyIR .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-ulUBObcyIR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUBObcyIR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUBObcyIR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUBObcyIR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUBObcyIR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUBObcyIR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUBObcyIR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUBObcyIR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUBObcyIR .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-ulUBObcyIR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUBObcyIR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUBObcyIR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUBObcyIR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUBObcyIR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUBObcyIR .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUBObcyIR .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUBObcyIR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUBObcyIR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUBObcyIR .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUBObcyIR .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-ulUBObcyIR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUBObcyIR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUBObcyIR .dropdown-item.active,
.cid-ulUBObcyIR .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUBObcyIR .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUBObcyIR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBObcyIR .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUBObcyIR .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUBObcyIR .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUBObcyIR .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUBObcyIR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUBObcyIR .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUBObcyIR .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUBObcyIR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUBObcyIR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUBObcyIR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUBObcyIR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUBObcyIR .navbar-buttons {
  text-align: center;
}
.cid-ulUBObcyIR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUBObcyIR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUBObcyIR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUBObcyIR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBObcyIR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUBObcyIR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUBObcyIR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBObcyIR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUBObcyIR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUBObcyIR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUBObcyIR .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUBObcyIR 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-ulUBObcyIR .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUBObcyIR .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-ulUBObcyIR .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUBObcyIR .navbar {
    height: 77px;
  }
  .cid-ulUBObcyIR .navbar.opened {
    height: auto;
  }
  .cid-ulUBObcyIR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUBObcyIR 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-ulUBObcyIR a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUBObcyIR .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUBObcyIR .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUBOcaLJN {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUBOcaLJN .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUBOcaLJN .carousel {
    height: 100vh;
  }
}
.cid-ulUBOcaLJN .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUBOcaLJN .carousel-item,
.cid-ulUBOcaLJN .carousel-inner {
  height: 100%;
}
.cid-ulUBOcaLJN .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUBOcaLJN .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUBOcaLJN .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUBOcaLJN .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUBOcaLJN .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUBOcaLJN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUBOcaLJN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUBOcaLJN .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUBOcaLJN .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUBOcaLJN .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBOcaLJN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUBOcaLJN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUBOcaLJN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUBOcaLJN .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-ulUBOcaLJN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBOcaLJN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUBOcaLJN .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUBOcaLJN .carousel-control {
    display: none !important;
  }
}
.cid-ulUBOcaLJN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUBOcaLJN .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-ulUBOcaLJN .carousel-indicators li.active,
.cid-ulUBOcaLJN .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUBOcaLJN .carousel-indicators li::after,
.cid-ulUBOcaLJN .carousel-indicators li::before {
  content: none;
}
.cid-ulUBOcaLJN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUBOcaLJN .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUBOcaLJN .mbr-section-text,
.cid-ulUBOcaLJN .mbr-section-btn {
  text-align: center;
}
.cid-ulUBOcXrE1 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUBOcXrE1 .item-img {
  position: relative;
}
.cid-ulUBOcXrE1 .item-img img {
  transition: all 0.2s;
}
.cid-ulUBOcXrE1 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUBOcXrE1 .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUBOcXrE1 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUBOcXrE1 .item:hover img {
  transform: scale(1.05);
}
.cid-ulUBOcXrE1 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUBOcXrE1 .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUBOcXrE1 .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUBOcXrE1 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUBOcXrE1 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUBOcXrE1 .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-ulUBOcXrE1 .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-ulUBOcXrE1 .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUBOcXrE1 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUBOcXrE1 .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUBOcXrE1 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUBOcXrE1 .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUBOcXrE1 .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-ulUBOcXrE1 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUBOcXrE1 img,
.cid-ulUBOcXrE1 .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUBOcXrE1 .item:focus,
.cid-ulUBOcXrE1 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUBOcXrE1 .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUBOcXrE1 .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUBOcXrE1 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBOcXrE1 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUBOcXrE1 .mbr-section-subtitle,
.cid-ulUBOcXrE1 .subtitle-wrap,
.cid-ulUBOcXrE1 .mbr-section-btn {
  text-align: left;
}
.cid-ulUBOcXrE1 .mbr-text,
.cid-ulUBOcXrE1 .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUBOdDBLR .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUBOdDBLR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUBOdDBLR .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-ulUBOdDBLR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUBOdDBLR .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUBOecfuN {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUBOecfuN .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUBOecfuN textarea {
  min-height: 150px;
}
.cid-ulUBOecfuN input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUBOecfuN textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUBOecfuN .form-control,
.cid-ulUBOecfuN .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-ulUBOecfuN .form-control input::-webkit-input-placeholder,
.cid-ulUBOecfuN .field-input input::-webkit-input-placeholder,
.cid-ulUBOecfuN .form-control textarea::-webkit-input-placeholder,
.cid-ulUBOecfuN .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBOecfuN .form-control input:-moz-placeholder,
.cid-ulUBOecfuN .field-input input:-moz-placeholder,
.cid-ulUBOecfuN .form-control textarea:-moz-placeholder,
.cid-ulUBOecfuN .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUBOecfuN .jq-number__spin:hover,
.cid-ulUBOecfuN .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUBOecfuN .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUBOecfuN .jq-selectbox li,
.cid-ulUBOecfuN .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBOecfuN .jq-selectbox li:hover,
.cid-ulUBOecfuN .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUBOecfuN .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUBOecfuN .jq-number__spin.minus:hover:after,
.cid-ulUBOecfuN .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUBOecfuN .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUBOecfuN .jq-number__spin.minus:after,
.cid-ulUBOecfuN .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUBOecfuN .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUBOecfuN .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUBOecfuN .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUBOecfuN .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUBOecfuN .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUBOecfuN .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUBOecfuN .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUBOecfuN .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUBOecfuN .social-list {
  display: flex;
}
.cid-ulUBOecfuN .social-list a {
  transition: .3s;
}
.cid-ulUBOecfuN .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUBOecfuN .row {
  align-items: center;
}
.cid-ulUBOecfuN .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUBOecfuN .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUBOecfuN .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUBOecfuN input::-webkit-input-placeholder,
.cid-ulUBOecfuN textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUBOecfuN input:-moz-placeholder,
.cid-ulUBOecfuN textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUBOecfuN .media-content {
    padding-right: 3rem;
  }
  .cid-ulUBOecfuN .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUBOecfuN .row {
    padding: 0 1rem;
  }
}
.cid-ulUBOecfuN .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUBOecfuN .form-btn {
    width: 100%;
  }
  .cid-ulUBOecfuN .btn {
    width: 100%;
  }
}
.cid-ulUBOf1Rgv {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUBOf1Rgv .image-block {
  margin: auto;
}
.cid-ulUBOf1Rgv .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUBOf1Rgv .image-block {
    width: 100% !important;
  }
}
.cid-ulUBOf1Rgv .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUBOf1Rgv .container {
    padding: 0 2rem;
  }
}
.cid-ulUBOfvKSR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUBOfvKSR .media-container-row {
  align-items: center;
}
.cid-ulUBOfvKSR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUBOfvKSR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUBOfvKSR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUBOfvKSR .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUBOfvKSR .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUBOfvKSR .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUBOfvKSR .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-ulUBOfvKSR .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUBOfvKSR .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUBOfvKSR .foot-menu {
    justify-content: center;
  }
  .cid-ulUBOfvKSR .mbr-text {
    text-align: center;
  }
  .cid-ulUBOfvKSR .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUBOfvKSR .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUBOfvKSR .link:hover {
  color: #ffffff;
}
.cid-ulUBOfvKSR .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUC0hV2kN .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-ulUC0hV2kN .nav-item:focus,
.cid-ulUC0hV2kN .nav-link:focus {
  outline: none;
}
.cid-ulUC0hV2kN .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-ulUC0hV2kN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUC0hV2kN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUC0hV2kN .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-ulUC0hV2kN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUC0hV2kN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUC0hV2kN .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUC0hV2kN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUC0hV2kN .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUC0hV2kN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUC0hV2kN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUC0hV2kN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUC0hV2kN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUC0hV2kN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUC0hV2kN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUC0hV2kN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUC0hV2kN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUC0hV2kN .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-ulUC0hV2kN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUC0hV2kN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUC0hV2kN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUC0hV2kN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUC0hV2kN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUC0hV2kN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUC0hV2kN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUC0hV2kN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUC0hV2kN .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-ulUC0hV2kN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUC0hV2kN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUC0hV2kN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUC0hV2kN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUC0hV2kN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUC0hV2kN .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUC0hV2kN .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUC0hV2kN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUC0hV2kN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUC0hV2kN .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUC0hV2kN .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-ulUC0hV2kN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUC0hV2kN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUC0hV2kN .dropdown-item.active,
.cid-ulUC0hV2kN .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUC0hV2kN .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUC0hV2kN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUC0hV2kN .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUC0hV2kN .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUC0hV2kN .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUC0hV2kN .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUC0hV2kN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUC0hV2kN .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUC0hV2kN .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUC0hV2kN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUC0hV2kN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUC0hV2kN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUC0hV2kN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUC0hV2kN .navbar-buttons {
  text-align: center;
}
.cid-ulUC0hV2kN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUC0hV2kN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUC0hV2kN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUC0hV2kN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUC0hV2kN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUC0hV2kN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUC0hV2kN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUC0hV2kN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUC0hV2kN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUC0hV2kN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUC0hV2kN .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUC0hV2kN 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-ulUC0hV2kN .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUC0hV2kN .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-ulUC0hV2kN .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUC0hV2kN .navbar {
    height: 77px;
  }
  .cid-ulUC0hV2kN .navbar.opened {
    height: auto;
  }
  .cid-ulUC0hV2kN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUC0hV2kN 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-ulUC0hV2kN a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUC0hV2kN .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUC0hV2kN .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUC0jnmZX {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUC0jnmZX .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUC0jnmZX .carousel {
    height: 100vh;
  }
}
.cid-ulUC0jnmZX .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUC0jnmZX .carousel-item,
.cid-ulUC0jnmZX .carousel-inner {
  height: 100%;
}
.cid-ulUC0jnmZX .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUC0jnmZX .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUC0jnmZX .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUC0jnmZX .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUC0jnmZX .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUC0jnmZX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUC0jnmZX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUC0jnmZX .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUC0jnmZX .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUC0jnmZX .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUC0jnmZX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUC0jnmZX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUC0jnmZX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUC0jnmZX .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-ulUC0jnmZX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUC0jnmZX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUC0jnmZX .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUC0jnmZX .carousel-control {
    display: none !important;
  }
}
.cid-ulUC0jnmZX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUC0jnmZX .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-ulUC0jnmZX .carousel-indicators li.active,
.cid-ulUC0jnmZX .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUC0jnmZX .carousel-indicators li::after,
.cid-ulUC0jnmZX .carousel-indicators li::before {
  content: none;
}
.cid-ulUC0jnmZX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUC0jnmZX .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUC0jnmZX .mbr-section-text,
.cid-ulUC0jnmZX .mbr-section-btn {
  text-align: center;
}
.cid-ulUC0kJxOP {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUC0kJxOP .item-img {
  position: relative;
}
.cid-ulUC0kJxOP .item-img img {
  transition: all 0.2s;
}
.cid-ulUC0kJxOP .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUC0kJxOP .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUC0kJxOP .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUC0kJxOP .item:hover img {
  transform: scale(1.05);
}
.cid-ulUC0kJxOP .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUC0kJxOP .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUC0kJxOP .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUC0kJxOP .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUC0kJxOP .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUC0kJxOP .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-ulUC0kJxOP .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-ulUC0kJxOP .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUC0kJxOP .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUC0kJxOP .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUC0kJxOP .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUC0kJxOP .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUC0kJxOP .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-ulUC0kJxOP .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUC0kJxOP img,
.cid-ulUC0kJxOP .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUC0kJxOP .item:focus,
.cid-ulUC0kJxOP span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUC0kJxOP .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUC0kJxOP .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUC0kJxOP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUC0kJxOP .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUC0kJxOP .mbr-section-subtitle,
.cid-ulUC0kJxOP .subtitle-wrap,
.cid-ulUC0kJxOP .mbr-section-btn {
  text-align: left;
}
.cid-ulUC0kJxOP .mbr-text,
.cid-ulUC0kJxOP .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUC0lxkDQ .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUC0lxkDQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUC0lxkDQ .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-ulUC0lxkDQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUC0lxkDQ .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUC0m8Ile {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUC0m8Ile .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUC0m8Ile textarea {
  min-height: 150px;
}
.cid-ulUC0m8Ile input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUC0m8Ile textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUC0m8Ile .form-control,
.cid-ulUC0m8Ile .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-ulUC0m8Ile .form-control input::-webkit-input-placeholder,
.cid-ulUC0m8Ile .field-input input::-webkit-input-placeholder,
.cid-ulUC0m8Ile .form-control textarea::-webkit-input-placeholder,
.cid-ulUC0m8Ile .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUC0m8Ile .form-control input:-moz-placeholder,
.cid-ulUC0m8Ile .field-input input:-moz-placeholder,
.cid-ulUC0m8Ile .form-control textarea:-moz-placeholder,
.cid-ulUC0m8Ile .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUC0m8Ile .jq-number__spin:hover,
.cid-ulUC0m8Ile .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUC0m8Ile .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUC0m8Ile .jq-selectbox li,
.cid-ulUC0m8Ile .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUC0m8Ile .jq-selectbox li:hover,
.cid-ulUC0m8Ile .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUC0m8Ile .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUC0m8Ile .jq-number__spin.minus:hover:after,
.cid-ulUC0m8Ile .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUC0m8Ile .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUC0m8Ile .jq-number__spin.minus:after,
.cid-ulUC0m8Ile .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUC0m8Ile .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUC0m8Ile .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUC0m8Ile .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUC0m8Ile .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUC0m8Ile .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUC0m8Ile .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUC0m8Ile .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUC0m8Ile .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUC0m8Ile .social-list {
  display: flex;
}
.cid-ulUC0m8Ile .social-list a {
  transition: .3s;
}
.cid-ulUC0m8Ile .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUC0m8Ile .row {
  align-items: center;
}
.cid-ulUC0m8Ile .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUC0m8Ile .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUC0m8Ile .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUC0m8Ile input::-webkit-input-placeholder,
.cid-ulUC0m8Ile textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUC0m8Ile input:-moz-placeholder,
.cid-ulUC0m8Ile textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUC0m8Ile .media-content {
    padding-right: 3rem;
  }
  .cid-ulUC0m8Ile .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUC0m8Ile .row {
    padding: 0 1rem;
  }
}
.cid-ulUC0m8Ile .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUC0m8Ile .form-btn {
    width: 100%;
  }
  .cid-ulUC0m8Ile .btn {
    width: 100%;
  }
}
.cid-ulUC0neZeg {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUC0neZeg .image-block {
  margin: auto;
}
.cid-ulUC0neZeg .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUC0neZeg .image-block {
    width: 100% !important;
  }
}
.cid-ulUC0neZeg .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUC0neZeg .container {
    padding: 0 2rem;
  }
}
.cid-ulUC0nUDjG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUC0nUDjG .media-container-row {
  align-items: center;
}
.cid-ulUC0nUDjG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUC0nUDjG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUC0nUDjG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUC0nUDjG .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUC0nUDjG .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUC0nUDjG .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUC0nUDjG .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-ulUC0nUDjG .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUC0nUDjG .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUC0nUDjG .foot-menu {
    justify-content: center;
  }
  .cid-ulUC0nUDjG .mbr-text {
    text-align: center;
  }
  .cid-ulUC0nUDjG .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUC0nUDjG .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUC0nUDjG .link:hover {
  color: #ffffff;
}
.cid-ulUC0nUDjG .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUCcRjNZi .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-ulUCcRjNZi .nav-item:focus,
.cid-ulUCcRjNZi .nav-link:focus {
  outline: none;
}
.cid-ulUCcRjNZi .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-ulUCcRjNZi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUCcRjNZi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUCcRjNZi .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-ulUCcRjNZi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUCcRjNZi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUCcRjNZi .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUCcRjNZi .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUCcRjNZi .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUCcRjNZi .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUCcRjNZi .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUCcRjNZi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUCcRjNZi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUCcRjNZi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUCcRjNZi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUCcRjNZi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUCcRjNZi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUCcRjNZi .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-ulUCcRjNZi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUCcRjNZi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUCcRjNZi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUCcRjNZi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUCcRjNZi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUCcRjNZi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUCcRjNZi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUCcRjNZi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUCcRjNZi .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-ulUCcRjNZi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUCcRjNZi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUCcRjNZi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUCcRjNZi .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUCcRjNZi .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUCcRjNZi .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUCcRjNZi .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUCcRjNZi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUCcRjNZi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUCcRjNZi .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUCcRjNZi .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-ulUCcRjNZi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUCcRjNZi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUCcRjNZi .dropdown-item.active,
.cid-ulUCcRjNZi .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUCcRjNZi .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUCcRjNZi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUCcRjNZi .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUCcRjNZi .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUCcRjNZi .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUCcRjNZi .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUCcRjNZi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUCcRjNZi .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUCcRjNZi .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUCcRjNZi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUCcRjNZi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUCcRjNZi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUCcRjNZi ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUCcRjNZi .navbar-buttons {
  text-align: center;
}
.cid-ulUCcRjNZi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUCcRjNZi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUCcRjNZi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUCcRjNZi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUCcRjNZi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUCcRjNZi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUCcRjNZi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUCcRjNZi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUCcRjNZi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUCcRjNZi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUCcRjNZi .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUCcRjNZi 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-ulUCcRjNZi .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUCcRjNZi .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-ulUCcRjNZi .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUCcRjNZi .navbar {
    height: 77px;
  }
  .cid-ulUCcRjNZi .navbar.opened {
    height: auto;
  }
  .cid-ulUCcRjNZi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUCcRjNZi 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-ulUCcRjNZi a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUCcRjNZi .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUCcRjNZi .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUCcSfkl3 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUCcSfkl3 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUCcSfkl3 .carousel {
    height: 100vh;
  }
}
.cid-ulUCcSfkl3 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUCcSfkl3 .carousel-item,
.cid-ulUCcSfkl3 .carousel-inner {
  height: 100%;
}
.cid-ulUCcSfkl3 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUCcSfkl3 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUCcSfkl3 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUCcSfkl3 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUCcSfkl3 .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUCcSfkl3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUCcSfkl3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUCcSfkl3 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUCcSfkl3 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUCcSfkl3 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUCcSfkl3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUCcSfkl3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUCcSfkl3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUCcSfkl3 .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-ulUCcSfkl3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUCcSfkl3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUCcSfkl3 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUCcSfkl3 .carousel-control {
    display: none !important;
  }
}
.cid-ulUCcSfkl3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUCcSfkl3 .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-ulUCcSfkl3 .carousel-indicators li.active,
.cid-ulUCcSfkl3 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUCcSfkl3 .carousel-indicators li::after,
.cid-ulUCcSfkl3 .carousel-indicators li::before {
  content: none;
}
.cid-ulUCcSfkl3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUCcSfkl3 .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUCcSfkl3 .mbr-section-text,
.cid-ulUCcSfkl3 .mbr-section-btn {
  text-align: center;
}
.cid-ulUCcSY7ro {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUCcSY7ro .item-img {
  position: relative;
}
.cid-ulUCcSY7ro .item-img img {
  transition: all 0.2s;
}
.cid-ulUCcSY7ro .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUCcSY7ro .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUCcSY7ro .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUCcSY7ro .item:hover img {
  transform: scale(1.05);
}
.cid-ulUCcSY7ro .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUCcSY7ro .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUCcSY7ro .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUCcSY7ro .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUCcSY7ro .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUCcSY7ro .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-ulUCcSY7ro .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-ulUCcSY7ro .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUCcSY7ro .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUCcSY7ro .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUCcSY7ro .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUCcSY7ro .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUCcSY7ro .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-ulUCcSY7ro .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUCcSY7ro img,
.cid-ulUCcSY7ro .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUCcSY7ro .item:focus,
.cid-ulUCcSY7ro span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUCcSY7ro .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUCcSY7ro .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUCcSY7ro .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUCcSY7ro .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUCcSY7ro .mbr-section-subtitle,
.cid-ulUCcSY7ro .subtitle-wrap,
.cid-ulUCcSY7ro .mbr-section-btn {
  text-align: left;
}
.cid-ulUCcSY7ro .mbr-text,
.cid-ulUCcSY7ro .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUCcTGC8a .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUCcTGC8a .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUCcTGC8a .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-ulUCcTGC8a .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUCcTGC8a .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUCcUeWdc {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUCcUeWdc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUCcUeWdc textarea {
  min-height: 150px;
}
.cid-ulUCcUeWdc input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUCcUeWdc textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUCcUeWdc .form-control,
.cid-ulUCcUeWdc .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-ulUCcUeWdc .form-control input::-webkit-input-placeholder,
.cid-ulUCcUeWdc .field-input input::-webkit-input-placeholder,
.cid-ulUCcUeWdc .form-control textarea::-webkit-input-placeholder,
.cid-ulUCcUeWdc .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUCcUeWdc .form-control input:-moz-placeholder,
.cid-ulUCcUeWdc .field-input input:-moz-placeholder,
.cid-ulUCcUeWdc .form-control textarea:-moz-placeholder,
.cid-ulUCcUeWdc .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUCcUeWdc .jq-number__spin:hover,
.cid-ulUCcUeWdc .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUCcUeWdc .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUCcUeWdc .jq-selectbox li,
.cid-ulUCcUeWdc .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUCcUeWdc .jq-selectbox li:hover,
.cid-ulUCcUeWdc .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUCcUeWdc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUCcUeWdc .jq-number__spin.minus:hover:after,
.cid-ulUCcUeWdc .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUCcUeWdc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUCcUeWdc .jq-number__spin.minus:after,
.cid-ulUCcUeWdc .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUCcUeWdc .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUCcUeWdc .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUCcUeWdc .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUCcUeWdc .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUCcUeWdc .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUCcUeWdc .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUCcUeWdc .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUCcUeWdc .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUCcUeWdc .social-list {
  display: flex;
}
.cid-ulUCcUeWdc .social-list a {
  transition: .3s;
}
.cid-ulUCcUeWdc .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUCcUeWdc .row {
  align-items: center;
}
.cid-ulUCcUeWdc .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUCcUeWdc .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUCcUeWdc .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUCcUeWdc input::-webkit-input-placeholder,
.cid-ulUCcUeWdc textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUCcUeWdc input:-moz-placeholder,
.cid-ulUCcUeWdc textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUCcUeWdc .media-content {
    padding-right: 3rem;
  }
  .cid-ulUCcUeWdc .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUCcUeWdc .row {
    padding: 0 1rem;
  }
}
.cid-ulUCcUeWdc .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUCcUeWdc .form-btn {
    width: 100%;
  }
  .cid-ulUCcUeWdc .btn {
    width: 100%;
  }
}
.cid-ulUCcV7i8a {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUCcV7i8a .image-block {
  margin: auto;
}
.cid-ulUCcV7i8a .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUCcV7i8a .image-block {
    width: 100% !important;
  }
}
.cid-ulUCcV7i8a .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUCcV7i8a .container {
    padding: 0 2rem;
  }
}
.cid-ulUCcVN29a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUCcVN29a .media-container-row {
  align-items: center;
}
.cid-ulUCcVN29a .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUCcVN29a .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUCcVN29a .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUCcVN29a .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUCcVN29a .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUCcVN29a .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUCcVN29a .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-ulUCcVN29a .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUCcVN29a .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUCcVN29a .foot-menu {
    justify-content: center;
  }
  .cid-ulUCcVN29a .mbr-text {
    text-align: center;
  }
  .cid-ulUCcVN29a .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUCcVN29a .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUCcVN29a .link:hover {
  color: #ffffff;
}
.cid-ulUCcVN29a .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUCn8kLTq .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-ulUCn8kLTq .nav-item:focus,
.cid-ulUCn8kLTq .nav-link:focus {
  outline: none;
}
.cid-ulUCn8kLTq .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-ulUCn8kLTq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUCn8kLTq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUCn8kLTq .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-ulUCn8kLTq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUCn8kLTq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUCn8kLTq .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUCn8kLTq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUCn8kLTq .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUCn8kLTq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUCn8kLTq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUCn8kLTq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUCn8kLTq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUCn8kLTq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUCn8kLTq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUCn8kLTq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUCn8kLTq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUCn8kLTq .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-ulUCn8kLTq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUCn8kLTq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUCn8kLTq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUCn8kLTq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUCn8kLTq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUCn8kLTq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUCn8kLTq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUCn8kLTq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUCn8kLTq .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-ulUCn8kLTq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUCn8kLTq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUCn8kLTq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUCn8kLTq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUCn8kLTq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUCn8kLTq .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUCn8kLTq .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUCn8kLTq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUCn8kLTq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUCn8kLTq .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUCn8kLTq .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-ulUCn8kLTq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUCn8kLTq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUCn8kLTq .dropdown-item.active,
.cid-ulUCn8kLTq .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUCn8kLTq .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUCn8kLTq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUCn8kLTq .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUCn8kLTq .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUCn8kLTq .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUCn8kLTq .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUCn8kLTq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUCn8kLTq .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUCn8kLTq .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUCn8kLTq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUCn8kLTq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUCn8kLTq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUCn8kLTq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUCn8kLTq .navbar-buttons {
  text-align: center;
}
.cid-ulUCn8kLTq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUCn8kLTq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUCn8kLTq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUCn8kLTq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUCn8kLTq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUCn8kLTq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUCn8kLTq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUCn8kLTq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUCn8kLTq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUCn8kLTq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUCn8kLTq .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUCn8kLTq 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-ulUCn8kLTq .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUCn8kLTq .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-ulUCn8kLTq .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUCn8kLTq .navbar {
    height: 77px;
  }
  .cid-ulUCn8kLTq .navbar.opened {
    height: auto;
  }
  .cid-ulUCn8kLTq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUCn8kLTq 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-ulUCn8kLTq a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUCn8kLTq .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUCn8kLTq .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUCn9aSfr {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUCn9aSfr .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUCn9aSfr .carousel {
    height: 100vh;
  }
}
.cid-ulUCn9aSfr .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUCn9aSfr .carousel-item,
.cid-ulUCn9aSfr .carousel-inner {
  height: 100%;
}
.cid-ulUCn9aSfr .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUCn9aSfr .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUCn9aSfr .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUCn9aSfr .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUCn9aSfr .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUCn9aSfr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUCn9aSfr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUCn9aSfr .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUCn9aSfr .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUCn9aSfr .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUCn9aSfr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUCn9aSfr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUCn9aSfr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUCn9aSfr .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-ulUCn9aSfr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUCn9aSfr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUCn9aSfr .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUCn9aSfr .carousel-control {
    display: none !important;
  }
}
.cid-ulUCn9aSfr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUCn9aSfr .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-ulUCn9aSfr .carousel-indicators li.active,
.cid-ulUCn9aSfr .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUCn9aSfr .carousel-indicators li::after,
.cid-ulUCn9aSfr .carousel-indicators li::before {
  content: none;
}
.cid-ulUCn9aSfr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUCn9aSfr .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUCn9aSfr .mbr-section-text,
.cid-ulUCn9aSfr .mbr-section-btn {
  text-align: center;
}
.cid-ulUCn9V56Q {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUCn9V56Q .item-img {
  position: relative;
}
.cid-ulUCn9V56Q .item-img img {
  transition: all 0.2s;
}
.cid-ulUCn9V56Q .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUCn9V56Q .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUCn9V56Q .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUCn9V56Q .item:hover img {
  transform: scale(1.05);
}
.cid-ulUCn9V56Q .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUCn9V56Q .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUCn9V56Q .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUCn9V56Q .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUCn9V56Q .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUCn9V56Q .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-ulUCn9V56Q .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-ulUCn9V56Q .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUCn9V56Q .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUCn9V56Q .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUCn9V56Q .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUCn9V56Q .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUCn9V56Q .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-ulUCn9V56Q .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUCn9V56Q img,
.cid-ulUCn9V56Q .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUCn9V56Q .item:focus,
.cid-ulUCn9V56Q span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUCn9V56Q .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUCn9V56Q .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUCn9V56Q .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUCn9V56Q .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUCn9V56Q .mbr-section-subtitle,
.cid-ulUCn9V56Q .subtitle-wrap,
.cid-ulUCn9V56Q .mbr-section-btn {
  text-align: left;
}
.cid-ulUCn9V56Q .mbr-text,
.cid-ulUCn9V56Q .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUCnaEI7S .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUCnaEI7S .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUCnaEI7S .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-ulUCnaEI7S .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUCnaEI7S .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUCnbmjVA {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUCnbmjVA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUCnbmjVA textarea {
  min-height: 150px;
}
.cid-ulUCnbmjVA input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUCnbmjVA textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUCnbmjVA .form-control,
.cid-ulUCnbmjVA .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-ulUCnbmjVA .form-control input::-webkit-input-placeholder,
.cid-ulUCnbmjVA .field-input input::-webkit-input-placeholder,
.cid-ulUCnbmjVA .form-control textarea::-webkit-input-placeholder,
.cid-ulUCnbmjVA .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUCnbmjVA .form-control input:-moz-placeholder,
.cid-ulUCnbmjVA .field-input input:-moz-placeholder,
.cid-ulUCnbmjVA .form-control textarea:-moz-placeholder,
.cid-ulUCnbmjVA .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUCnbmjVA .jq-number__spin:hover,
.cid-ulUCnbmjVA .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUCnbmjVA .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUCnbmjVA .jq-selectbox li,
.cid-ulUCnbmjVA .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUCnbmjVA .jq-selectbox li:hover,
.cid-ulUCnbmjVA .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUCnbmjVA .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUCnbmjVA .jq-number__spin.minus:hover:after,
.cid-ulUCnbmjVA .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUCnbmjVA .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUCnbmjVA .jq-number__spin.minus:after,
.cid-ulUCnbmjVA .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUCnbmjVA .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUCnbmjVA .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUCnbmjVA .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUCnbmjVA .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUCnbmjVA .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUCnbmjVA .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUCnbmjVA .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUCnbmjVA .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUCnbmjVA .social-list {
  display: flex;
}
.cid-ulUCnbmjVA .social-list a {
  transition: .3s;
}
.cid-ulUCnbmjVA .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUCnbmjVA .row {
  align-items: center;
}
.cid-ulUCnbmjVA .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUCnbmjVA .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUCnbmjVA .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUCnbmjVA input::-webkit-input-placeholder,
.cid-ulUCnbmjVA textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUCnbmjVA input:-moz-placeholder,
.cid-ulUCnbmjVA textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUCnbmjVA .media-content {
    padding-right: 3rem;
  }
  .cid-ulUCnbmjVA .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUCnbmjVA .row {
    padding: 0 1rem;
  }
}
.cid-ulUCnbmjVA .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUCnbmjVA .form-btn {
    width: 100%;
  }
  .cid-ulUCnbmjVA .btn {
    width: 100%;
  }
}
.cid-ulUCnc3LyR {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUCnc3LyR .image-block {
  margin: auto;
}
.cid-ulUCnc3LyR .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUCnc3LyR .image-block {
    width: 100% !important;
  }
}
.cid-ulUCnc3LyR .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUCnc3LyR .container {
    padding: 0 2rem;
  }
}
.cid-ulUCncv07v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUCncv07v .media-container-row {
  align-items: center;
}
.cid-ulUCncv07v .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUCncv07v .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUCncv07v .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUCncv07v .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUCncv07v .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUCncv07v .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUCncv07v .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-ulUCncv07v .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUCncv07v .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUCncv07v .foot-menu {
    justify-content: center;
  }
  .cid-ulUCncv07v .mbr-text {
    text-align: center;
  }
  .cid-ulUCncv07v .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUCncv07v .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUCncv07v .link:hover {
  color: #ffffff;
}
.cid-ulUCncv07v .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUJqffTMG .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-ulUJqffTMG .nav-item:focus,
.cid-ulUJqffTMG .nav-link:focus {
  outline: none;
}
.cid-ulUJqffTMG .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-ulUJqffTMG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUJqffTMG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUJqffTMG .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-ulUJqffTMG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUJqffTMG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUJqffTMG .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUJqffTMG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUJqffTMG .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUJqffTMG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUJqffTMG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUJqffTMG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUJqffTMG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUJqffTMG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUJqffTMG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUJqffTMG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUJqffTMG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUJqffTMG .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-ulUJqffTMG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUJqffTMG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUJqffTMG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUJqffTMG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUJqffTMG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUJqffTMG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUJqffTMG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUJqffTMG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUJqffTMG .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-ulUJqffTMG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUJqffTMG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUJqffTMG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUJqffTMG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUJqffTMG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUJqffTMG .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUJqffTMG .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUJqffTMG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUJqffTMG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUJqffTMG .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUJqffTMG .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-ulUJqffTMG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUJqffTMG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUJqffTMG .dropdown-item.active,
.cid-ulUJqffTMG .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUJqffTMG .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUJqffTMG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUJqffTMG .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUJqffTMG .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUJqffTMG .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUJqffTMG .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUJqffTMG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUJqffTMG .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUJqffTMG .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUJqffTMG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUJqffTMG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUJqffTMG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUJqffTMG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUJqffTMG .navbar-buttons {
  text-align: center;
}
.cid-ulUJqffTMG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUJqffTMG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUJqffTMG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUJqffTMG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUJqffTMG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUJqffTMG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUJqffTMG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUJqffTMG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUJqffTMG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUJqffTMG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUJqffTMG .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUJqffTMG 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-ulUJqffTMG .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUJqffTMG .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-ulUJqffTMG .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUJqffTMG .navbar {
    height: 77px;
  }
  .cid-ulUJqffTMG .navbar.opened {
    height: auto;
  }
  .cid-ulUJqffTMG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUJqffTMG 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-ulUJqffTMG a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUJqffTMG .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUJqffTMG .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUJqgrpxQ {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUJqgrpxQ .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUJqgrpxQ .carousel {
    height: 100vh;
  }
}
.cid-ulUJqgrpxQ .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUJqgrpxQ .carousel-item,
.cid-ulUJqgrpxQ .carousel-inner {
  height: 100%;
}
.cid-ulUJqgrpxQ .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUJqgrpxQ .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUJqgrpxQ .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUJqgrpxQ .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUJqgrpxQ .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUJqgrpxQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUJqgrpxQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUJqgrpxQ .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUJqgrpxQ .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUJqgrpxQ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUJqgrpxQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUJqgrpxQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUJqgrpxQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUJqgrpxQ .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-ulUJqgrpxQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUJqgrpxQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUJqgrpxQ .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUJqgrpxQ .carousel-control {
    display: none !important;
  }
}
.cid-ulUJqgrpxQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUJqgrpxQ .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-ulUJqgrpxQ .carousel-indicators li.active,
.cid-ulUJqgrpxQ .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUJqgrpxQ .carousel-indicators li::after,
.cid-ulUJqgrpxQ .carousel-indicators li::before {
  content: none;
}
.cid-ulUJqgrpxQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUJqgrpxQ .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUJqgrpxQ .mbr-section-text,
.cid-ulUJqgrpxQ .mbr-section-btn {
  text-align: center;
}
.cid-ulUJqhnJ7O {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUJqhnJ7O .item-img {
  position: relative;
}
.cid-ulUJqhnJ7O .item-img img {
  transition: all 0.2s;
}
.cid-ulUJqhnJ7O .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUJqhnJ7O .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUJqhnJ7O .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUJqhnJ7O .item:hover img {
  transform: scale(1.05);
}
.cid-ulUJqhnJ7O .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUJqhnJ7O .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUJqhnJ7O .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUJqhnJ7O .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUJqhnJ7O .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUJqhnJ7O .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-ulUJqhnJ7O .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-ulUJqhnJ7O .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUJqhnJ7O .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUJqhnJ7O .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUJqhnJ7O .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUJqhnJ7O .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUJqhnJ7O .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-ulUJqhnJ7O .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUJqhnJ7O img,
.cid-ulUJqhnJ7O .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUJqhnJ7O .item:focus,
.cid-ulUJqhnJ7O span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUJqhnJ7O .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUJqhnJ7O .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUJqhnJ7O .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUJqhnJ7O .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUJqhnJ7O .mbr-section-subtitle,
.cid-ulUJqhnJ7O .subtitle-wrap,
.cid-ulUJqhnJ7O .mbr-section-btn {
  text-align: left;
}
.cid-ulUJqhnJ7O .mbr-text,
.cid-ulUJqhnJ7O .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUJqi4OUn .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUJqi4OUn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUJqi4OUn .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-ulUJqi4OUn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUJqi4OUn .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUJqiFsQp {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUJqiFsQp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUJqiFsQp textarea {
  min-height: 150px;
}
.cid-ulUJqiFsQp input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUJqiFsQp textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUJqiFsQp .form-control,
.cid-ulUJqiFsQp .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-ulUJqiFsQp .form-control input::-webkit-input-placeholder,
.cid-ulUJqiFsQp .field-input input::-webkit-input-placeholder,
.cid-ulUJqiFsQp .form-control textarea::-webkit-input-placeholder,
.cid-ulUJqiFsQp .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUJqiFsQp .form-control input:-moz-placeholder,
.cid-ulUJqiFsQp .field-input input:-moz-placeholder,
.cid-ulUJqiFsQp .form-control textarea:-moz-placeholder,
.cid-ulUJqiFsQp .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUJqiFsQp .jq-number__spin:hover,
.cid-ulUJqiFsQp .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUJqiFsQp .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUJqiFsQp .jq-selectbox li,
.cid-ulUJqiFsQp .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUJqiFsQp .jq-selectbox li:hover,
.cid-ulUJqiFsQp .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUJqiFsQp .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUJqiFsQp .jq-number__spin.minus:hover:after,
.cid-ulUJqiFsQp .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUJqiFsQp .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUJqiFsQp .jq-number__spin.minus:after,
.cid-ulUJqiFsQp .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUJqiFsQp .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUJqiFsQp .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUJqiFsQp .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUJqiFsQp .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUJqiFsQp .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUJqiFsQp .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUJqiFsQp .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUJqiFsQp .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUJqiFsQp .social-list {
  display: flex;
}
.cid-ulUJqiFsQp .social-list a {
  transition: .3s;
}
.cid-ulUJqiFsQp .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUJqiFsQp .row {
  align-items: center;
}
.cid-ulUJqiFsQp .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUJqiFsQp .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUJqiFsQp .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUJqiFsQp input::-webkit-input-placeholder,
.cid-ulUJqiFsQp textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUJqiFsQp input:-moz-placeholder,
.cid-ulUJqiFsQp textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUJqiFsQp .media-content {
    padding-right: 3rem;
  }
  .cid-ulUJqiFsQp .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUJqiFsQp .row {
    padding: 0 1rem;
  }
}
.cid-ulUJqiFsQp .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUJqiFsQp .form-btn {
    width: 100%;
  }
  .cid-ulUJqiFsQp .btn {
    width: 100%;
  }
}
.cid-ulUJqjoNHt {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUJqjoNHt .image-block {
  margin: auto;
}
.cid-ulUJqjoNHt .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUJqjoNHt .image-block {
    width: 100% !important;
  }
}
.cid-ulUJqjoNHt .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUJqjoNHt .container {
    padding: 0 2rem;
  }
}
.cid-ulUJqjX3dF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUJqjX3dF .media-container-row {
  align-items: center;
}
.cid-ulUJqjX3dF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUJqjX3dF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUJqjX3dF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUJqjX3dF .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUJqjX3dF .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUJqjX3dF .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUJqjX3dF .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-ulUJqjX3dF .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUJqjX3dF .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUJqjX3dF .foot-menu {
    justify-content: center;
  }
  .cid-ulUJqjX3dF .mbr-text {
    text-align: center;
  }
  .cid-ulUJqjX3dF .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUJqjX3dF .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUJqjX3dF .link:hover {
  color: #ffffff;
}
.cid-ulUJqjX3dF .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulUSSBXDZc .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-ulUSSBXDZc .nav-item:focus,
.cid-ulUSSBXDZc .nav-link:focus {
  outline: none;
}
.cid-ulUSSBXDZc .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-ulUSSBXDZc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulUSSBXDZc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-ulUSSBXDZc .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-ulUSSBXDZc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulUSSBXDZc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulUSSBXDZc .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-ulUSSBXDZc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-ulUSSBXDZc .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-ulUSSBXDZc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulUSSBXDZc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulUSSBXDZc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulUSSBXDZc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulUSSBXDZc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ulUSSBXDZc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulUSSBXDZc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulUSSBXDZc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulUSSBXDZc .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-ulUSSBXDZc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulUSSBXDZc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulUSSBXDZc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulUSSBXDZc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulUSSBXDZc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulUSSBXDZc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulUSSBXDZc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulUSSBXDZc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulUSSBXDZc .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-ulUSSBXDZc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulUSSBXDZc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulUSSBXDZc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulUSSBXDZc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulUSSBXDZc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulUSSBXDZc .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulUSSBXDZc .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-ulUSSBXDZc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulUSSBXDZc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulUSSBXDZc .navbar-short {
  padding: 1rem 0 !important;
}
.cid-ulUSSBXDZc .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-ulUSSBXDZc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulUSSBXDZc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulUSSBXDZc .dropdown-item.active,
.cid-ulUSSBXDZc .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ulUSSBXDZc .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-ulUSSBXDZc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUSSBXDZc .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ulUSSBXDZc .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-ulUSSBXDZc .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ulUSSBXDZc .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-ulUSSBXDZc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-ulUSSBXDZc .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-ulUSSBXDZc .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-ulUSSBXDZc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-ulUSSBXDZc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulUSSBXDZc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulUSSBXDZc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulUSSBXDZc .navbar-buttons {
  text-align: center;
}
.cid-ulUSSBXDZc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulUSSBXDZc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ulUSSBXDZc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulUSSBXDZc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUSSBXDZc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulUSSBXDZc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulUSSBXDZc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUSSBXDZc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulUSSBXDZc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulUSSBXDZc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulUSSBXDZc .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-ulUSSBXDZc 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-ulUSSBXDZc .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-ulUSSBXDZc .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-ulUSSBXDZc .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulUSSBXDZc .navbar {
    height: 77px;
  }
  .cid-ulUSSBXDZc .navbar.opened {
    height: auto;
  }
  .cid-ulUSSBXDZc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulUSSBXDZc 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-ulUSSBXDZc a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-ulUSSBXDZc .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-ulUSSBXDZc .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-ulUSSCZm6r {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-ulUSSCZm6r .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ulUSSCZm6r .carousel {
    height: 100vh;
  }
}
.cid-ulUSSCZm6r .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulUSSCZm6r .carousel-item,
.cid-ulUSSCZm6r .carousel-inner {
  height: 100%;
}
.cid-ulUSSCZm6r .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUSSCZm6r .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-ulUSSCZm6r .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-ulUSSCZm6r .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-ulUSSCZm6r .mbr-section-btn {
  margin-top: 42px;
}
.cid-ulUSSCZm6r .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ulUSSCZm6r .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ulUSSCZm6r .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-ulUSSCZm6r .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-ulUSSCZm6r .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUSSCZm6r .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ulUSSCZm6r .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ulUSSCZm6r .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ulUSSCZm6r .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-ulUSSCZm6r .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUSSCZm6r .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-ulUSSCZm6r .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-ulUSSCZm6r .carousel-control {
    display: none !important;
  }
}
.cid-ulUSSCZm6r .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-ulUSSCZm6r .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-ulUSSCZm6r .carousel-indicators li.active,
.cid-ulUSSCZm6r .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-ulUSSCZm6r .carousel-indicators li::after,
.cid-ulUSSCZm6r .carousel-indicators li::before {
  content: none;
}
.cid-ulUSSCZm6r .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ulUSSCZm6r .carousel-indicators {
    display: none !important;
  }
}
.cid-ulUSSCZm6r .mbr-section-text,
.cid-ulUSSCZm6r .mbr-section-btn {
  text-align: center;
}
.cid-ulUSSDTBxT {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ulUSSDTBxT .item-img {
  position: relative;
}
.cid-ulUSSDTBxT .item-img img {
  transition: all 0.2s;
}
.cid-ulUSSDTBxT .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-ulUSSDTBxT .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-ulUSSDTBxT .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-ulUSSDTBxT .item:hover img {
  transform: scale(1.05);
}
.cid-ulUSSDTBxT .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-ulUSSDTBxT .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-ulUSSDTBxT .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ulUSSDTBxT .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-ulUSSDTBxT .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-ulUSSDTBxT .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-ulUSSDTBxT .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-ulUSSDTBxT .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-ulUSSDTBxT .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-ulUSSDTBxT .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-ulUSSDTBxT .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-ulUSSDTBxT .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-ulUSSDTBxT .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-ulUSSDTBxT .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-ulUSSDTBxT img,
.cid-ulUSSDTBxT .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ulUSSDTBxT .item:focus,
.cid-ulUSSDTBxT span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-ulUSSDTBxT .item {
    margin-bottom: 1rem;
  }
}
.cid-ulUSSDTBxT .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-ulUSSDTBxT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ulUSSDTBxT .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ulUSSDTBxT .mbr-section-subtitle,
.cid-ulUSSDTBxT .subtitle-wrap,
.cid-ulUSSDTBxT .mbr-section-btn {
  text-align: left;
}
.cid-ulUSSDTBxT .mbr-text,
.cid-ulUSSDTBxT .item .mbr-section-btn {
  color: #ffffff;
}
.cid-ulUSSEA2Oa .google-map {
  height: 34rem;
  position: relative;
}
.cid-ulUSSEA2Oa .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ulUSSEA2Oa .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-ulUSSEA2Oa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ulUSSEA2Oa .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-ulUSSF6RNd {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-ulUSSF6RNd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ulUSSF6RNd textarea {
  min-height: 150px;
}
.cid-ulUSSF6RNd input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-ulUSSF6RNd textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-ulUSSF6RNd .form-control,
.cid-ulUSSF6RNd .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-ulUSSF6RNd .form-control input::-webkit-input-placeholder,
.cid-ulUSSF6RNd .field-input input::-webkit-input-placeholder,
.cid-ulUSSF6RNd .form-control textarea::-webkit-input-placeholder,
.cid-ulUSSF6RNd .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUSSF6RNd .form-control input:-moz-placeholder,
.cid-ulUSSF6RNd .field-input input:-moz-placeholder,
.cid-ulUSSF6RNd .form-control textarea:-moz-placeholder,
.cid-ulUSSF6RNd .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-ulUSSF6RNd .jq-number__spin:hover,
.cid-ulUSSF6RNd .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-ulUSSF6RNd .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ulUSSF6RNd .jq-selectbox li,
.cid-ulUSSF6RNd .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUSSF6RNd .jq-selectbox li:hover,
.cid-ulUSSF6RNd .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-ulUSSF6RNd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ulUSSF6RNd .jq-number__spin.minus:hover:after,
.cid-ulUSSF6RNd .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-ulUSSF6RNd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ulUSSF6RNd .jq-number__spin.minus:after,
.cid-ulUSSF6RNd .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-ulUSSF6RNd .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-ulUSSF6RNd .social-list {
    margin-bottom: 3rem;
  }
  .cid-ulUSSF6RNd .email-input {
    margin-top: 2rem;
  }
}
.cid-ulUSSF6RNd .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-ulUSSF6RNd .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-ulUSSF6RNd .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-ulUSSF6RNd .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-ulUSSF6RNd .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-ulUSSF6RNd .social-list {
  display: flex;
}
.cid-ulUSSF6RNd .social-list a {
  transition: .3s;
}
.cid-ulUSSF6RNd .social-list a:hover {
  transform: translateY(-8px);
}
.cid-ulUSSF6RNd .row {
  align-items: center;
}
.cid-ulUSSF6RNd .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-ulUSSF6RNd .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-ulUSSF6RNd .form-btn {
  margin-top: 2.5rem;
}
.cid-ulUSSF6RNd input::-webkit-input-placeholder,
.cid-ulUSSF6RNd textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-ulUSSF6RNd input:-moz-placeholder,
.cid-ulUSSF6RNd textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-ulUSSF6RNd .media-content {
    padding-right: 3rem;
  }
  .cid-ulUSSF6RNd .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-ulUSSF6RNd .row {
    padding: 0 1rem;
  }
}
.cid-ulUSSF6RNd .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-ulUSSF6RNd .form-btn {
    width: 100%;
  }
  .cid-ulUSSF6RNd .btn {
    width: 100%;
  }
}
.cid-ulUSSFWw46 {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-ulUSSFWw46 .image-block {
  margin: auto;
}
.cid-ulUSSFWw46 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ulUSSFWw46 .image-block {
    width: 100% !important;
  }
}
.cid-ulUSSFWw46 .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-ulUSSFWw46 .container {
    padding: 0 2rem;
  }
}
.cid-ulUSSGtEGh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ulUSSGtEGh .media-container-row {
  align-items: center;
}
.cid-ulUSSGtEGh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulUSSGtEGh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulUSSGtEGh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulUSSGtEGh .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulUSSGtEGh .foot-menu-item {
  transform: 0.2s;
}
.cid-ulUSSGtEGh .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-ulUSSGtEGh .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-ulUSSGtEGh .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-ulUSSGtEGh .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-ulUSSGtEGh .foot-menu {
    justify-content: center;
  }
  .cid-ulUSSGtEGh .mbr-text {
    text-align: center;
  }
  .cid-ulUSSGtEGh .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulUSSGtEGh .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulUSSGtEGh .link:hover {
  color: #ffffff;
}
.cid-ulUSSGtEGh .media-container-row .mbr-text {
  text-align: center;
}
.cid-uIxLkhlMeE .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-uIxLkhlMeE .nav-item:focus,
.cid-uIxLkhlMeE .nav-link:focus {
  outline: none;
}
.cid-uIxLkhlMeE .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-uIxLkhlMeE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIxLkhlMeE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uIxLkhlMeE .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-uIxLkhlMeE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIxLkhlMeE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIxLkhlMeE .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uIxLkhlMeE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-uIxLkhlMeE .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-uIxLkhlMeE .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uIxLkhlMeE .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIxLkhlMeE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIxLkhlMeE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIxLkhlMeE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uIxLkhlMeE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uIxLkhlMeE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIxLkhlMeE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIxLkhlMeE .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-uIxLkhlMeE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIxLkhlMeE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uIxLkhlMeE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uIxLkhlMeE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIxLkhlMeE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIxLkhlMeE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uIxLkhlMeE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIxLkhlMeE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIxLkhlMeE .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-uIxLkhlMeE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIxLkhlMeE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIxLkhlMeE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIxLkhlMeE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIxLkhlMeE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uIxLkhlMeE .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uIxLkhlMeE .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uIxLkhlMeE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIxLkhlMeE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uIxLkhlMeE .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uIxLkhlMeE .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-uIxLkhlMeE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIxLkhlMeE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIxLkhlMeE .dropdown-item.active,
.cid-uIxLkhlMeE .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uIxLkhlMeE .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uIxLkhlMeE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIxLkhlMeE .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uIxLkhlMeE .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uIxLkhlMeE .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uIxLkhlMeE .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uIxLkhlMeE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIxLkhlMeE .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uIxLkhlMeE .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uIxLkhlMeE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-uIxLkhlMeE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIxLkhlMeE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIxLkhlMeE ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uIxLkhlMeE .navbar-buttons {
  text-align: center;
}
.cid-uIxLkhlMeE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIxLkhlMeE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uIxLkhlMeE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIxLkhlMeE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIxLkhlMeE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIxLkhlMeE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIxLkhlMeE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIxLkhlMeE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIxLkhlMeE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIxLkhlMeE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIxLkhlMeE .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uIxLkhlMeE 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-uIxLkhlMeE .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uIxLkhlMeE .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-uIxLkhlMeE .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIxLkhlMeE .navbar {
    height: 77px;
  }
  .cid-uIxLkhlMeE .navbar.opened {
    height: auto;
  }
  .cid-uIxLkhlMeE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIxLkhlMeE 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-uIxLkhlMeE a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-uIxLkhlMeE .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uIxLkhlMeE .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uIxLkhWygU {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uIxLkhWygU .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uIxLkhWygU .carousel {
    height: 100vh;
  }
}
.cid-uIxLkhWygU .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIxLkhWygU .carousel-item,
.cid-uIxLkhWygU .carousel-inner {
  height: 100%;
}
.cid-uIxLkhWygU .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uIxLkhWygU .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uIxLkhWygU .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uIxLkhWygU .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uIxLkhWygU .mbr-section-btn {
  margin-top: 42px;
}
.cid-uIxLkhWygU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uIxLkhWygU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uIxLkhWygU .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uIxLkhWygU .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uIxLkhWygU .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIxLkhWygU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uIxLkhWygU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uIxLkhWygU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIxLkhWygU .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-uIxLkhWygU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIxLkhWygU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIxLkhWygU .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uIxLkhWygU .carousel-control {
    display: none !important;
  }
}
.cid-uIxLkhWygU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uIxLkhWygU .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-uIxLkhWygU .carousel-indicators li.active,
.cid-uIxLkhWygU .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uIxLkhWygU .carousel-indicators li::after,
.cid-uIxLkhWygU .carousel-indicators li::before {
  content: none;
}
.cid-uIxLkhWygU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uIxLkhWygU .carousel-indicators {
    display: none !important;
  }
}
.cid-uIxLkhWygU .mbr-section-text,
.cid-uIxLkhWygU .mbr-section-btn {
  text-align: center;
}
.cid-uIxLkitVRn {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIxLkitVRn .item-img {
  position: relative;
}
.cid-uIxLkitVRn .item-img img {
  transition: all 0.2s;
}
.cid-uIxLkitVRn .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uIxLkitVRn .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-uIxLkitVRn .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-uIxLkitVRn .item:hover img {
  transform: scale(1.05);
}
.cid-uIxLkitVRn .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uIxLkitVRn .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-uIxLkitVRn .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uIxLkitVRn .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uIxLkitVRn .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uIxLkitVRn .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-uIxLkitVRn .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-uIxLkitVRn .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uIxLkitVRn .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uIxLkitVRn .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uIxLkitVRn .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uIxLkitVRn .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uIxLkitVRn .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-uIxLkitVRn .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uIxLkitVRn img,
.cid-uIxLkitVRn .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uIxLkitVRn .item:focus,
.cid-uIxLkitVRn span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uIxLkitVRn .item {
    margin-bottom: 1rem;
  }
}
.cid-uIxLkitVRn .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-uIxLkitVRn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uIxLkitVRn .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uIxLkitVRn .mbr-section-subtitle,
.cid-uIxLkitVRn .subtitle-wrap,
.cid-uIxLkitVRn .mbr-section-btn {
  text-align: left;
}
.cid-uIxLkitVRn .mbr-text,
.cid-uIxLkitVRn .item .mbr-section-btn {
  color: #ffffff;
}
.cid-uIxLkiVbuY .google-map {
  height: 34rem;
  position: relative;
}
.cid-uIxLkiVbuY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIxLkiVbuY .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-uIxLkiVbuY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIxLkiVbuY .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uIxLkjm8ej {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-uIxLkjm8ej .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIxLkjm8ej textarea {
  min-height: 150px;
}
.cid-uIxLkjm8ej input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uIxLkjm8ej textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uIxLkjm8ej .form-control,
.cid-uIxLkjm8ej .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-uIxLkjm8ej .form-control input::-webkit-input-placeholder,
.cid-uIxLkjm8ej .field-input input::-webkit-input-placeholder,
.cid-uIxLkjm8ej .form-control textarea::-webkit-input-placeholder,
.cid-uIxLkjm8ej .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIxLkjm8ej .form-control input:-moz-placeholder,
.cid-uIxLkjm8ej .field-input input:-moz-placeholder,
.cid-uIxLkjm8ej .form-control textarea:-moz-placeholder,
.cid-uIxLkjm8ej .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uIxLkjm8ej .jq-number__spin:hover,
.cid-uIxLkjm8ej .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uIxLkjm8ej .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIxLkjm8ej .jq-selectbox li,
.cid-uIxLkjm8ej .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIxLkjm8ej .jq-selectbox li:hover,
.cid-uIxLkjm8ej .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIxLkjm8ej .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uIxLkjm8ej .jq-number__spin.minus:hover:after,
.cid-uIxLkjm8ej .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-uIxLkjm8ej .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uIxLkjm8ej .jq-number__spin.minus:after,
.cid-uIxLkjm8ej .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-uIxLkjm8ej .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uIxLkjm8ej .social-list {
    margin-bottom: 3rem;
  }
  .cid-uIxLkjm8ej .email-input {
    margin-top: 2rem;
  }
}
.cid-uIxLkjm8ej .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-uIxLkjm8ej .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uIxLkjm8ej .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uIxLkjm8ej .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-uIxLkjm8ej .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-uIxLkjm8ej .social-list {
  display: flex;
}
.cid-uIxLkjm8ej .social-list a {
  transition: .3s;
}
.cid-uIxLkjm8ej .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uIxLkjm8ej .row {
  align-items: center;
}
.cid-uIxLkjm8ej .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uIxLkjm8ej .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uIxLkjm8ej .form-btn {
  margin-top: 2.5rem;
}
.cid-uIxLkjm8ej input::-webkit-input-placeholder,
.cid-uIxLkjm8ej textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIxLkjm8ej input:-moz-placeholder,
.cid-uIxLkjm8ej textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uIxLkjm8ej .media-content {
    padding-right: 3rem;
  }
  .cid-uIxLkjm8ej .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uIxLkjm8ej .row {
    padding: 0 1rem;
  }
}
.cid-uIxLkjm8ej .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uIxLkjm8ej .form-btn {
    width: 100%;
  }
  .cid-uIxLkjm8ej .btn {
    width: 100%;
  }
}
.cid-uIxLkjPvY5 {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uIxLkjPvY5 .image-block {
  margin: auto;
}
.cid-uIxLkjPvY5 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIxLkjPvY5 .image-block {
    width: 100% !important;
  }
}
.cid-uIxLkjPvY5 .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uIxLkjPvY5 .container {
    padding: 0 2rem;
  }
}
.cid-uIxLkk3LEe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uIxLkk3LEe .media-container-row {
  align-items: center;
}
.cid-uIxLkk3LEe .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uIxLkk3LEe .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uIxLkk3LEe .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uIxLkk3LEe .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uIxLkk3LEe .foot-menu-item {
  transform: 0.2s;
}
.cid-uIxLkk3LEe .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-uIxLkk3LEe .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-uIxLkk3LEe .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-uIxLkk3LEe .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uIxLkk3LEe .foot-menu {
    justify-content: center;
  }
  .cid-uIxLkk3LEe .mbr-text {
    text-align: center;
  }
  .cid-uIxLkk3LEe .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uIxLkk3LEe .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uIxLkk3LEe .link:hover {
  color: #ffffff;
}
.cid-uIxLkk3LEe .media-container-row .mbr-text {
  text-align: center;
}
.cid-uIxOccrdWM .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-uIxOccrdWM .nav-item:focus,
.cid-uIxOccrdWM .nav-link:focus {
  outline: none;
}
.cid-uIxOccrdWM .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-uIxOccrdWM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIxOccrdWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uIxOccrdWM .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-uIxOccrdWM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIxOccrdWM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIxOccrdWM .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uIxOccrdWM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-uIxOccrdWM .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-uIxOccrdWM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uIxOccrdWM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIxOccrdWM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIxOccrdWM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIxOccrdWM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uIxOccrdWM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uIxOccrdWM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIxOccrdWM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIxOccrdWM .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-uIxOccrdWM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIxOccrdWM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uIxOccrdWM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uIxOccrdWM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIxOccrdWM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIxOccrdWM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uIxOccrdWM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIxOccrdWM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIxOccrdWM .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-uIxOccrdWM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIxOccrdWM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIxOccrdWM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIxOccrdWM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIxOccrdWM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uIxOccrdWM .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uIxOccrdWM .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uIxOccrdWM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIxOccrdWM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uIxOccrdWM .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uIxOccrdWM .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-uIxOccrdWM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIxOccrdWM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIxOccrdWM .dropdown-item.active,
.cid-uIxOccrdWM .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uIxOccrdWM .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uIxOccrdWM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIxOccrdWM .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uIxOccrdWM .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uIxOccrdWM .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uIxOccrdWM .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uIxOccrdWM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIxOccrdWM .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uIxOccrdWM .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uIxOccrdWM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-uIxOccrdWM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIxOccrdWM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIxOccrdWM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uIxOccrdWM .navbar-buttons {
  text-align: center;
}
.cid-uIxOccrdWM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIxOccrdWM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uIxOccrdWM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIxOccrdWM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIxOccrdWM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIxOccrdWM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIxOccrdWM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIxOccrdWM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIxOccrdWM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIxOccrdWM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIxOccrdWM .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uIxOccrdWM 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-uIxOccrdWM .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uIxOccrdWM .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-uIxOccrdWM .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIxOccrdWM .navbar {
    height: 77px;
  }
  .cid-uIxOccrdWM .navbar.opened {
    height: auto;
  }
  .cid-uIxOccrdWM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIxOccrdWM 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-uIxOccrdWM a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-uIxOccrdWM .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uIxOccrdWM .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uIxOcdGdZi {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uIxOcdGdZi .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uIxOcdGdZi .carousel {
    height: 100vh;
  }
}
.cid-uIxOcdGdZi .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIxOcdGdZi .carousel-item,
.cid-uIxOcdGdZi .carousel-inner {
  height: 100%;
}
.cid-uIxOcdGdZi .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uIxOcdGdZi .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uIxOcdGdZi .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uIxOcdGdZi .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uIxOcdGdZi .mbr-section-btn {
  margin-top: 42px;
}
.cid-uIxOcdGdZi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uIxOcdGdZi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uIxOcdGdZi .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uIxOcdGdZi .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uIxOcdGdZi .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIxOcdGdZi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uIxOcdGdZi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uIxOcdGdZi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIxOcdGdZi .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-uIxOcdGdZi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIxOcdGdZi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIxOcdGdZi .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uIxOcdGdZi .carousel-control {
    display: none !important;
  }
}
.cid-uIxOcdGdZi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uIxOcdGdZi .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-uIxOcdGdZi .carousel-indicators li.active,
.cid-uIxOcdGdZi .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uIxOcdGdZi .carousel-indicators li::after,
.cid-uIxOcdGdZi .carousel-indicators li::before {
  content: none;
}
.cid-uIxOcdGdZi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uIxOcdGdZi .carousel-indicators {
    display: none !important;
  }
}
.cid-uIxOcdGdZi .mbr-section-text,
.cid-uIxOcdGdZi .mbr-section-btn {
  text-align: center;
}
.cid-uIxOceztJ7 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIxOceztJ7 .item-img {
  position: relative;
}
.cid-uIxOceztJ7 .item-img img {
  transition: all 0.2s;
}
.cid-uIxOceztJ7 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uIxOceztJ7 .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-uIxOceztJ7 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-uIxOceztJ7 .item:hover img {
  transform: scale(1.05);
}
.cid-uIxOceztJ7 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uIxOceztJ7 .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-uIxOceztJ7 .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uIxOceztJ7 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uIxOceztJ7 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uIxOceztJ7 .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-uIxOceztJ7 .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-uIxOceztJ7 .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uIxOceztJ7 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uIxOceztJ7 .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uIxOceztJ7 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uIxOceztJ7 .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uIxOceztJ7 .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-uIxOceztJ7 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uIxOceztJ7 img,
.cid-uIxOceztJ7 .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uIxOceztJ7 .item:focus,
.cid-uIxOceztJ7 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uIxOceztJ7 .item {
    margin-bottom: 1rem;
  }
}
.cid-uIxOceztJ7 .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-uIxOceztJ7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uIxOceztJ7 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uIxOceztJ7 .mbr-section-subtitle,
.cid-uIxOceztJ7 .subtitle-wrap,
.cid-uIxOceztJ7 .mbr-section-btn {
  text-align: left;
}
.cid-uIxOceztJ7 .mbr-text,
.cid-uIxOceztJ7 .item .mbr-section-btn {
  color: #ffffff;
}
.cid-uIxOcfvPfK .google-map {
  height: 34rem;
  position: relative;
}
.cid-uIxOcfvPfK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIxOcfvPfK .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-uIxOcfvPfK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIxOcfvPfK .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uIxOcfMOqh {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-uIxOcfMOqh .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIxOcfMOqh textarea {
  min-height: 150px;
}
.cid-uIxOcfMOqh input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uIxOcfMOqh textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uIxOcfMOqh .form-control,
.cid-uIxOcfMOqh .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-uIxOcfMOqh .form-control input::-webkit-input-placeholder,
.cid-uIxOcfMOqh .field-input input::-webkit-input-placeholder,
.cid-uIxOcfMOqh .form-control textarea::-webkit-input-placeholder,
.cid-uIxOcfMOqh .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIxOcfMOqh .form-control input:-moz-placeholder,
.cid-uIxOcfMOqh .field-input input:-moz-placeholder,
.cid-uIxOcfMOqh .form-control textarea:-moz-placeholder,
.cid-uIxOcfMOqh .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uIxOcfMOqh .jq-number__spin:hover,
.cid-uIxOcfMOqh .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uIxOcfMOqh .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIxOcfMOqh .jq-selectbox li,
.cid-uIxOcfMOqh .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIxOcfMOqh .jq-selectbox li:hover,
.cid-uIxOcfMOqh .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIxOcfMOqh .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uIxOcfMOqh .jq-number__spin.minus:hover:after,
.cid-uIxOcfMOqh .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-uIxOcfMOqh .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uIxOcfMOqh .jq-number__spin.minus:after,
.cid-uIxOcfMOqh .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-uIxOcfMOqh .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uIxOcfMOqh .social-list {
    margin-bottom: 3rem;
  }
  .cid-uIxOcfMOqh .email-input {
    margin-top: 2rem;
  }
}
.cid-uIxOcfMOqh .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-uIxOcfMOqh .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uIxOcfMOqh .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uIxOcfMOqh .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-uIxOcfMOqh .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-uIxOcfMOqh .social-list {
  display: flex;
}
.cid-uIxOcfMOqh .social-list a {
  transition: .3s;
}
.cid-uIxOcfMOqh .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uIxOcfMOqh .row {
  align-items: center;
}
.cid-uIxOcfMOqh .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uIxOcfMOqh .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uIxOcfMOqh .form-btn {
  margin-top: 2.5rem;
}
.cid-uIxOcfMOqh input::-webkit-input-placeholder,
.cid-uIxOcfMOqh textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIxOcfMOqh input:-moz-placeholder,
.cid-uIxOcfMOqh textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uIxOcfMOqh .media-content {
    padding-right: 3rem;
  }
  .cid-uIxOcfMOqh .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uIxOcfMOqh .row {
    padding: 0 1rem;
  }
}
.cid-uIxOcfMOqh .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uIxOcfMOqh .form-btn {
    width: 100%;
  }
  .cid-uIxOcfMOqh .btn {
    width: 100%;
  }
}
.cid-uIxOcghMJu {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uIxOcghMJu .image-block {
  margin: auto;
}
.cid-uIxOcghMJu .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIxOcghMJu .image-block {
    width: 100% !important;
  }
}
.cid-uIxOcghMJu .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uIxOcghMJu .container {
    padding: 0 2rem;
  }
}
.cid-uIxOcgxJeI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uIxOcgxJeI .media-container-row {
  align-items: center;
}
.cid-uIxOcgxJeI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uIxOcgxJeI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uIxOcgxJeI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uIxOcgxJeI .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uIxOcgxJeI .foot-menu-item {
  transform: 0.2s;
}
.cid-uIxOcgxJeI .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-uIxOcgxJeI .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-uIxOcgxJeI .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-uIxOcgxJeI .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uIxOcgxJeI .foot-menu {
    justify-content: center;
  }
  .cid-uIxOcgxJeI .mbr-text {
    text-align: center;
  }
  .cid-uIxOcgxJeI .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uIxOcgxJeI .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uIxOcgxJeI .link:hover {
  color: #ffffff;
}
.cid-uIxOcgxJeI .media-container-row .mbr-text {
  text-align: center;
}
.cid-uIyKRxCsyB .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-uIyKRxCsyB .nav-item:focus,
.cid-uIyKRxCsyB .nav-link:focus {
  outline: none;
}
.cid-uIyKRxCsyB .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-uIyKRxCsyB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIyKRxCsyB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uIyKRxCsyB .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-uIyKRxCsyB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIyKRxCsyB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIyKRxCsyB .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uIyKRxCsyB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-uIyKRxCsyB .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-uIyKRxCsyB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uIyKRxCsyB .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIyKRxCsyB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIyKRxCsyB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIyKRxCsyB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uIyKRxCsyB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uIyKRxCsyB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIyKRxCsyB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIyKRxCsyB .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-uIyKRxCsyB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIyKRxCsyB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uIyKRxCsyB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uIyKRxCsyB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIyKRxCsyB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIyKRxCsyB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uIyKRxCsyB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIyKRxCsyB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIyKRxCsyB .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-uIyKRxCsyB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIyKRxCsyB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIyKRxCsyB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIyKRxCsyB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIyKRxCsyB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uIyKRxCsyB .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uIyKRxCsyB .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uIyKRxCsyB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIyKRxCsyB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uIyKRxCsyB .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uIyKRxCsyB .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-uIyKRxCsyB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIyKRxCsyB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIyKRxCsyB .dropdown-item.active,
.cid-uIyKRxCsyB .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uIyKRxCsyB .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uIyKRxCsyB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIyKRxCsyB .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uIyKRxCsyB .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uIyKRxCsyB .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uIyKRxCsyB .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uIyKRxCsyB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIyKRxCsyB .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uIyKRxCsyB .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uIyKRxCsyB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-uIyKRxCsyB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIyKRxCsyB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIyKRxCsyB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uIyKRxCsyB .navbar-buttons {
  text-align: center;
}
.cid-uIyKRxCsyB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIyKRxCsyB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uIyKRxCsyB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIyKRxCsyB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyKRxCsyB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyKRxCsyB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIyKRxCsyB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyKRxCsyB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIyKRxCsyB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIyKRxCsyB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyKRxCsyB .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uIyKRxCsyB 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-uIyKRxCsyB .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uIyKRxCsyB .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-uIyKRxCsyB .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIyKRxCsyB .navbar {
    height: 77px;
  }
  .cid-uIyKRxCsyB .navbar.opened {
    height: auto;
  }
  .cid-uIyKRxCsyB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIyKRxCsyB 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-uIyKRxCsyB a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-uIyKRxCsyB .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uIyKRxCsyB .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uIyKRyb7s2 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uIyKRyb7s2 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uIyKRyb7s2 .carousel {
    height: 100vh;
  }
}
.cid-uIyKRyb7s2 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIyKRyb7s2 .carousel-item,
.cid-uIyKRyb7s2 .carousel-inner {
  height: 100%;
}
.cid-uIyKRyb7s2 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uIyKRyb7s2 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uIyKRyb7s2 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uIyKRyb7s2 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uIyKRyb7s2 .mbr-section-btn {
  margin-top: 42px;
}
.cid-uIyKRyb7s2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uIyKRyb7s2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uIyKRyb7s2 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uIyKRyb7s2 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uIyKRyb7s2 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIyKRyb7s2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uIyKRyb7s2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uIyKRyb7s2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIyKRyb7s2 .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-uIyKRyb7s2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIyKRyb7s2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIyKRyb7s2 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uIyKRyb7s2 .carousel-control {
    display: none !important;
  }
}
.cid-uIyKRyb7s2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uIyKRyb7s2 .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-uIyKRyb7s2 .carousel-indicators li.active,
.cid-uIyKRyb7s2 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uIyKRyb7s2 .carousel-indicators li::after,
.cid-uIyKRyb7s2 .carousel-indicators li::before {
  content: none;
}
.cid-uIyKRyb7s2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uIyKRyb7s2 .carousel-indicators {
    display: none !important;
  }
}
.cid-uIyKRyb7s2 .mbr-section-text,
.cid-uIyKRyb7s2 .mbr-section-btn {
  text-align: center;
}
.cid-uIyKRyLS6K {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIyKRyLS6K .item-img {
  position: relative;
}
.cid-uIyKRyLS6K .item-img img {
  transition: all 0.2s;
}
.cid-uIyKRyLS6K .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uIyKRyLS6K .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-uIyKRyLS6K .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-uIyKRyLS6K .item:hover img {
  transform: scale(1.05);
}
.cid-uIyKRyLS6K .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uIyKRyLS6K .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-uIyKRyLS6K .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uIyKRyLS6K .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uIyKRyLS6K .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uIyKRyLS6K .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-uIyKRyLS6K .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-uIyKRyLS6K .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uIyKRyLS6K .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uIyKRyLS6K .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uIyKRyLS6K .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uIyKRyLS6K .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uIyKRyLS6K .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-uIyKRyLS6K .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uIyKRyLS6K img,
.cid-uIyKRyLS6K .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uIyKRyLS6K .item:focus,
.cid-uIyKRyLS6K span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uIyKRyLS6K .item {
    margin-bottom: 1rem;
  }
}
.cid-uIyKRyLS6K .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-uIyKRyLS6K .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uIyKRyLS6K .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uIyKRyLS6K .mbr-section-subtitle,
.cid-uIyKRyLS6K .subtitle-wrap,
.cid-uIyKRyLS6K .mbr-section-btn {
  text-align: left;
}
.cid-uIyKRyLS6K .mbr-text,
.cid-uIyKRyLS6K .item .mbr-section-btn {
  color: #ffffff;
}
.cid-uIyKRzl04h .google-map {
  height: 34rem;
  position: relative;
}
.cid-uIyKRzl04h .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIyKRzl04h .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-uIyKRzl04h .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIyKRzl04h .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uIyKRzzJKi {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-uIyKRzzJKi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIyKRzzJKi textarea {
  min-height: 150px;
}
.cid-uIyKRzzJKi input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uIyKRzzJKi textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uIyKRzzJKi .form-control,
.cid-uIyKRzzJKi .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-uIyKRzzJKi .form-control input::-webkit-input-placeholder,
.cid-uIyKRzzJKi .field-input input::-webkit-input-placeholder,
.cid-uIyKRzzJKi .form-control textarea::-webkit-input-placeholder,
.cid-uIyKRzzJKi .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIyKRzzJKi .form-control input:-moz-placeholder,
.cid-uIyKRzzJKi .field-input input:-moz-placeholder,
.cid-uIyKRzzJKi .form-control textarea:-moz-placeholder,
.cid-uIyKRzzJKi .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uIyKRzzJKi .jq-number__spin:hover,
.cid-uIyKRzzJKi .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uIyKRzzJKi .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIyKRzzJKi .jq-selectbox li,
.cid-uIyKRzzJKi .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIyKRzzJKi .jq-selectbox li:hover,
.cid-uIyKRzzJKi .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIyKRzzJKi .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uIyKRzzJKi .jq-number__spin.minus:hover:after,
.cid-uIyKRzzJKi .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-uIyKRzzJKi .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uIyKRzzJKi .jq-number__spin.minus:after,
.cid-uIyKRzzJKi .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-uIyKRzzJKi .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uIyKRzzJKi .social-list {
    margin-bottom: 3rem;
  }
  .cid-uIyKRzzJKi .email-input {
    margin-top: 2rem;
  }
}
.cid-uIyKRzzJKi .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-uIyKRzzJKi .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uIyKRzzJKi .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uIyKRzzJKi .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-uIyKRzzJKi .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-uIyKRzzJKi .social-list {
  display: flex;
}
.cid-uIyKRzzJKi .social-list a {
  transition: .3s;
}
.cid-uIyKRzzJKi .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uIyKRzzJKi .row {
  align-items: center;
}
.cid-uIyKRzzJKi .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uIyKRzzJKi .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uIyKRzzJKi .form-btn {
  margin-top: 2.5rem;
}
.cid-uIyKRzzJKi input::-webkit-input-placeholder,
.cid-uIyKRzzJKi textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIyKRzzJKi input:-moz-placeholder,
.cid-uIyKRzzJKi textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uIyKRzzJKi .media-content {
    padding-right: 3rem;
  }
  .cid-uIyKRzzJKi .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uIyKRzzJKi .row {
    padding: 0 1rem;
  }
}
.cid-uIyKRzzJKi .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uIyKRzzJKi .form-btn {
    width: 100%;
  }
  .cid-uIyKRzzJKi .btn {
    width: 100%;
  }
}
.cid-uIyKRA2n1g {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uIyKRA2n1g .image-block {
  margin: auto;
}
.cid-uIyKRA2n1g .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIyKRA2n1g .image-block {
    width: 100% !important;
  }
}
.cid-uIyKRA2n1g .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uIyKRA2n1g .container {
    padding: 0 2rem;
  }
}
.cid-uIyKRAj7cY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uIyKRAj7cY .media-container-row {
  align-items: center;
}
.cid-uIyKRAj7cY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uIyKRAj7cY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uIyKRAj7cY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uIyKRAj7cY .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uIyKRAj7cY .foot-menu-item {
  transform: 0.2s;
}
.cid-uIyKRAj7cY .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-uIyKRAj7cY .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-uIyKRAj7cY .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-uIyKRAj7cY .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uIyKRAj7cY .foot-menu {
    justify-content: center;
  }
  .cid-uIyKRAj7cY .mbr-text {
    text-align: center;
  }
  .cid-uIyKRAj7cY .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uIyKRAj7cY .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uIyKRAj7cY .link:hover {
  color: #ffffff;
}
.cid-uIyKRAj7cY .media-container-row .mbr-text {
  text-align: center;
}
.cid-uIyOXSPeK9 .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-uIyOXSPeK9 .nav-item:focus,
.cid-uIyOXSPeK9 .nav-link:focus {
  outline: none;
}
.cid-uIyOXSPeK9 .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-uIyOXSPeK9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIyOXSPeK9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uIyOXSPeK9 .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-uIyOXSPeK9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIyOXSPeK9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIyOXSPeK9 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uIyOXSPeK9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-uIyOXSPeK9 .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-uIyOXSPeK9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uIyOXSPeK9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIyOXSPeK9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIyOXSPeK9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIyOXSPeK9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uIyOXSPeK9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uIyOXSPeK9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIyOXSPeK9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIyOXSPeK9 .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-uIyOXSPeK9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIyOXSPeK9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uIyOXSPeK9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uIyOXSPeK9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIyOXSPeK9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIyOXSPeK9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uIyOXSPeK9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIyOXSPeK9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIyOXSPeK9 .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-uIyOXSPeK9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIyOXSPeK9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIyOXSPeK9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIyOXSPeK9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIyOXSPeK9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uIyOXSPeK9 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uIyOXSPeK9 .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uIyOXSPeK9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIyOXSPeK9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uIyOXSPeK9 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uIyOXSPeK9 .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-uIyOXSPeK9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIyOXSPeK9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIyOXSPeK9 .dropdown-item.active,
.cid-uIyOXSPeK9 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uIyOXSPeK9 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uIyOXSPeK9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIyOXSPeK9 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uIyOXSPeK9 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uIyOXSPeK9 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uIyOXSPeK9 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uIyOXSPeK9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIyOXSPeK9 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uIyOXSPeK9 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uIyOXSPeK9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-uIyOXSPeK9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIyOXSPeK9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIyOXSPeK9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uIyOXSPeK9 .navbar-buttons {
  text-align: center;
}
.cid-uIyOXSPeK9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIyOXSPeK9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uIyOXSPeK9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIyOXSPeK9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyOXSPeK9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyOXSPeK9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIyOXSPeK9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyOXSPeK9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIyOXSPeK9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIyOXSPeK9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyOXSPeK9 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uIyOXSPeK9 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-uIyOXSPeK9 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uIyOXSPeK9 .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-uIyOXSPeK9 .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIyOXSPeK9 .navbar {
    height: 77px;
  }
  .cid-uIyOXSPeK9 .navbar.opened {
    height: auto;
  }
  .cid-uIyOXSPeK9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIyOXSPeK9 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-uIyOXSPeK9 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-uIyOXSPeK9 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uIyOXSPeK9 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uIyOXTxFKJ {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uIyOXTxFKJ .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uIyOXTxFKJ .carousel {
    height: 100vh;
  }
}
.cid-uIyOXTxFKJ .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIyOXTxFKJ .carousel-item,
.cid-uIyOXTxFKJ .carousel-inner {
  height: 100%;
}
.cid-uIyOXTxFKJ .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uIyOXTxFKJ .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uIyOXTxFKJ .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uIyOXTxFKJ .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uIyOXTxFKJ .mbr-section-btn {
  margin-top: 42px;
}
.cid-uIyOXTxFKJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uIyOXTxFKJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uIyOXTxFKJ .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uIyOXTxFKJ .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uIyOXTxFKJ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIyOXTxFKJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uIyOXTxFKJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uIyOXTxFKJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIyOXTxFKJ .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-uIyOXTxFKJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIyOXTxFKJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIyOXTxFKJ .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uIyOXTxFKJ .carousel-control {
    display: none !important;
  }
}
.cid-uIyOXTxFKJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uIyOXTxFKJ .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-uIyOXTxFKJ .carousel-indicators li.active,
.cid-uIyOXTxFKJ .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uIyOXTxFKJ .carousel-indicators li::after,
.cid-uIyOXTxFKJ .carousel-indicators li::before {
  content: none;
}
.cid-uIyOXTxFKJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uIyOXTxFKJ .carousel-indicators {
    display: none !important;
  }
}
.cid-uIyOXTxFKJ .mbr-section-text,
.cid-uIyOXTxFKJ .mbr-section-btn {
  text-align: center;
}
.cid-uIyOXU6qaT {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIyOXU6qaT .item-img {
  position: relative;
}
.cid-uIyOXU6qaT .item-img img {
  transition: all 0.2s;
}
.cid-uIyOXU6qaT .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uIyOXU6qaT .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-uIyOXU6qaT .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-uIyOXU6qaT .item:hover img {
  transform: scale(1.05);
}
.cid-uIyOXU6qaT .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uIyOXU6qaT .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-uIyOXU6qaT .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uIyOXU6qaT .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uIyOXU6qaT .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uIyOXU6qaT .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-uIyOXU6qaT .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-uIyOXU6qaT .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uIyOXU6qaT .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uIyOXU6qaT .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uIyOXU6qaT .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uIyOXU6qaT .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uIyOXU6qaT .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-uIyOXU6qaT .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uIyOXU6qaT img,
.cid-uIyOXU6qaT .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uIyOXU6qaT .item:focus,
.cid-uIyOXU6qaT span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uIyOXU6qaT .item {
    margin-bottom: 1rem;
  }
}
.cid-uIyOXU6qaT .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-uIyOXU6qaT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uIyOXU6qaT .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uIyOXU6qaT .mbr-section-subtitle,
.cid-uIyOXU6qaT .subtitle-wrap,
.cid-uIyOXU6qaT .mbr-section-btn {
  text-align: left;
}
.cid-uIyOXU6qaT .mbr-text,
.cid-uIyOXU6qaT .item .mbr-section-btn {
  color: #ffffff;
}
.cid-uIyOXUAXyL .google-map {
  height: 34rem;
  position: relative;
}
.cid-uIyOXUAXyL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIyOXUAXyL .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-uIyOXUAXyL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIyOXUAXyL .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uIyOXUPH87 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-uIyOXUPH87 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIyOXUPH87 textarea {
  min-height: 150px;
}
.cid-uIyOXUPH87 input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uIyOXUPH87 textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uIyOXUPH87 .form-control,
.cid-uIyOXUPH87 .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-uIyOXUPH87 .form-control input::-webkit-input-placeholder,
.cid-uIyOXUPH87 .field-input input::-webkit-input-placeholder,
.cid-uIyOXUPH87 .form-control textarea::-webkit-input-placeholder,
.cid-uIyOXUPH87 .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIyOXUPH87 .form-control input:-moz-placeholder,
.cid-uIyOXUPH87 .field-input input:-moz-placeholder,
.cid-uIyOXUPH87 .form-control textarea:-moz-placeholder,
.cid-uIyOXUPH87 .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uIyOXUPH87 .jq-number__spin:hover,
.cid-uIyOXUPH87 .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uIyOXUPH87 .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIyOXUPH87 .jq-selectbox li,
.cid-uIyOXUPH87 .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIyOXUPH87 .jq-selectbox li:hover,
.cid-uIyOXUPH87 .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIyOXUPH87 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uIyOXUPH87 .jq-number__spin.minus:hover:after,
.cid-uIyOXUPH87 .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-uIyOXUPH87 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uIyOXUPH87 .jq-number__spin.minus:after,
.cid-uIyOXUPH87 .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-uIyOXUPH87 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uIyOXUPH87 .social-list {
    margin-bottom: 3rem;
  }
  .cid-uIyOXUPH87 .email-input {
    margin-top: 2rem;
  }
}
.cid-uIyOXUPH87 .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-uIyOXUPH87 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uIyOXUPH87 .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uIyOXUPH87 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-uIyOXUPH87 .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-uIyOXUPH87 .social-list {
  display: flex;
}
.cid-uIyOXUPH87 .social-list a {
  transition: .3s;
}
.cid-uIyOXUPH87 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uIyOXUPH87 .row {
  align-items: center;
}
.cid-uIyOXUPH87 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uIyOXUPH87 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uIyOXUPH87 .form-btn {
  margin-top: 2.5rem;
}
.cid-uIyOXUPH87 input::-webkit-input-placeholder,
.cid-uIyOXUPH87 textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIyOXUPH87 input:-moz-placeholder,
.cid-uIyOXUPH87 textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uIyOXUPH87 .media-content {
    padding-right: 3rem;
  }
  .cid-uIyOXUPH87 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uIyOXUPH87 .row {
    padding: 0 1rem;
  }
}
.cid-uIyOXUPH87 .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uIyOXUPH87 .form-btn {
    width: 100%;
  }
  .cid-uIyOXUPH87 .btn {
    width: 100%;
  }
}
.cid-uIyOXVCW17 {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uIyOXVCW17 .image-block {
  margin: auto;
}
.cid-uIyOXVCW17 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIyOXVCW17 .image-block {
    width: 100% !important;
  }
}
.cid-uIyOXVCW17 .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uIyOXVCW17 .container {
    padding: 0 2rem;
  }
}
.cid-uIyOXVVCjC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uIyOXVVCjC .media-container-row {
  align-items: center;
}
.cid-uIyOXVVCjC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uIyOXVVCjC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uIyOXVVCjC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uIyOXVVCjC .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uIyOXVVCjC .foot-menu-item {
  transform: 0.2s;
}
.cid-uIyOXVVCjC .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-uIyOXVVCjC .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-uIyOXVVCjC .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-uIyOXVVCjC .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uIyOXVVCjC .foot-menu {
    justify-content: center;
  }
  .cid-uIyOXVVCjC .mbr-text {
    text-align: center;
  }
  .cid-uIyOXVVCjC .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uIyOXVVCjC .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uIyOXVVCjC .link:hover {
  color: #ffffff;
}
.cid-uIyOXVVCjC .media-container-row .mbr-text {
  text-align: center;
}
.cid-uIyQhreLSe .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-uIyQhreLSe .nav-item:focus,
.cid-uIyQhreLSe .nav-link:focus {
  outline: none;
}
.cid-uIyQhreLSe .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-uIyQhreLSe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIyQhreLSe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uIyQhreLSe .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-uIyQhreLSe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIyQhreLSe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIyQhreLSe .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uIyQhreLSe .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1f2732;
}
.cid-uIyQhreLSe .navbar.opened {
  transition: all .3s;
  background: #1f2732 !important;
}
.cid-uIyQhreLSe .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uIyQhreLSe .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIyQhreLSe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIyQhreLSe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIyQhreLSe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uIyQhreLSe .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uIyQhreLSe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIyQhreLSe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIyQhreLSe .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-uIyQhreLSe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIyQhreLSe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uIyQhreLSe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uIyQhreLSe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIyQhreLSe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIyQhreLSe .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uIyQhreLSe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIyQhreLSe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIyQhreLSe .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-uIyQhreLSe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIyQhreLSe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIyQhreLSe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIyQhreLSe .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIyQhreLSe .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uIyQhreLSe .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uIyQhreLSe .navbar.navbar-short {
  background: #1f2732 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uIyQhreLSe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIyQhreLSe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uIyQhreLSe .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uIyQhreLSe .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-uIyQhreLSe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIyQhreLSe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIyQhreLSe .dropdown-item.active,
.cid-uIyQhreLSe .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uIyQhreLSe .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uIyQhreLSe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIyQhreLSe .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uIyQhreLSe .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uIyQhreLSe .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uIyQhreLSe .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uIyQhreLSe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uIyQhreLSe .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uIyQhreLSe .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uIyQhreLSe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1f2732;
}
.cid-uIyQhreLSe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIyQhreLSe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIyQhreLSe ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uIyQhreLSe .navbar-buttons {
  text-align: center;
}
.cid-uIyQhreLSe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIyQhreLSe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uIyQhreLSe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIyQhreLSe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyQhreLSe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyQhreLSe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIyQhreLSe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyQhreLSe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIyQhreLSe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIyQhreLSe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyQhreLSe .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uIyQhreLSe 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-uIyQhreLSe .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uIyQhreLSe .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-uIyQhreLSe .icons-menu span {
  font-size: 20px;
  color: #fcad09;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIyQhreLSe .navbar {
    height: 77px;
  }
  .cid-uIyQhreLSe .navbar.opened {
    height: auto;
  }
  .cid-uIyQhreLSe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIyQhreLSe 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-uIyQhreLSe a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #b539cf;
}
.cid-uIyQhreLSe .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uIyQhreLSe .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uIyQhrUmK7 {
  background-color: #ffffff;
  display: block;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-uIyQhrUmK7 .carousel {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uIyQhrUmK7 .carousel {
    height: 100vh;
  }
}
.cid-uIyQhrUmK7 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uIyQhrUmK7 .carousel-item,
.cid-uIyQhrUmK7 .carousel-inner {
  height: 100%;
}
.cid-uIyQhrUmK7 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uIyQhrUmK7 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-uIyQhrUmK7 .mbr-section-title {
  letter-spacing: 12px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-uIyQhrUmK7 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-uIyQhrUmK7 .mbr-section-btn {
  margin-top: 42px;
}
.cid-uIyQhrUmK7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uIyQhrUmK7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uIyQhrUmK7 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uIyQhrUmK7 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uIyQhrUmK7 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIyQhrUmK7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uIyQhrUmK7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uIyQhrUmK7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIyQhrUmK7 .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-uIyQhrUmK7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIyQhrUmK7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-uIyQhrUmK7 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uIyQhrUmK7 .carousel-control {
    display: none !important;
  }
}
.cid-uIyQhrUmK7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uIyQhrUmK7 .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-uIyQhrUmK7 .carousel-indicators li.active,
.cid-uIyQhrUmK7 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uIyQhrUmK7 .carousel-indicators li::after,
.cid-uIyQhrUmK7 .carousel-indicators li::before {
  content: none;
}
.cid-uIyQhrUmK7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uIyQhrUmK7 .carousel-indicators {
    display: none !important;
  }
}
.cid-uIyQhrUmK7 .mbr-section-text,
.cid-uIyQhrUmK7 .mbr-section-btn {
  text-align: center;
}
.cid-uIyQhsx0E5 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIyQhsx0E5 .item-img {
  position: relative;
}
.cid-uIyQhsx0E5 .item-img img {
  transition: all 0.2s;
}
.cid-uIyQhsx0E5 .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uIyQhsx0E5 .item:hover {
  cursor: pointer;
  transform: translateY(-6px);
}
.cid-uIyQhsx0E5 .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-uIyQhsx0E5 .item:hover img {
  transform: scale(1.05);
}
.cid-uIyQhsx0E5 .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uIyQhsx0E5 .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
}
.cid-uIyQhsx0E5 .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uIyQhsx0E5 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uIyQhsx0E5 .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uIyQhsx0E5 .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-uIyQhsx0E5 .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-uIyQhsx0E5 .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uIyQhsx0E5 .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uIyQhsx0E5 .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uIyQhsx0E5 .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uIyQhsx0E5 .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uIyQhsx0E5 .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-uIyQhsx0E5 .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uIyQhsx0E5 img,
.cid-uIyQhsx0E5 .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uIyQhsx0E5 .item:focus,
.cid-uIyQhsx0E5 span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uIyQhsx0E5 .item {
    margin-bottom: 1rem;
  }
}
.cid-uIyQhsx0E5 .mbr-section-title {
  color: #777777;
  text-align: left;
}
.cid-uIyQhsx0E5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uIyQhsx0E5 .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uIyQhsx0E5 .mbr-section-subtitle,
.cid-uIyQhsx0E5 .subtitle-wrap,
.cid-uIyQhsx0E5 .mbr-section-btn {
  text-align: left;
}
.cid-uIyQhsx0E5 .mbr-text,
.cid-uIyQhsx0E5 .item .mbr-section-btn {
  color: #ffffff;
}
.cid-uIyQht6WS6 .google-map {
  height: 34rem;
  position: relative;
}
.cid-uIyQht6WS6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIyQht6WS6 .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-uIyQht6WS6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIyQht6WS6 .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uIyQhto5PW {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1f2732;
}
.cid-uIyQhto5PW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIyQhto5PW textarea {
  min-height: 150px;
}
.cid-uIyQhto5PW input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uIyQhto5PW textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uIyQhto5PW .form-control,
.cid-uIyQhto5PW .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-uIyQhto5PW .form-control input::-webkit-input-placeholder,
.cid-uIyQhto5PW .field-input input::-webkit-input-placeholder,
.cid-uIyQhto5PW .form-control textarea::-webkit-input-placeholder,
.cid-uIyQhto5PW .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIyQhto5PW .form-control input:-moz-placeholder,
.cid-uIyQhto5PW .field-input input:-moz-placeholder,
.cid-uIyQhto5PW .form-control textarea:-moz-placeholder,
.cid-uIyQhto5PW .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uIyQhto5PW .jq-number__spin:hover,
.cid-uIyQhto5PW .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uIyQhto5PW .jq-number__spin {
  background-color: #101010;
  border-color: #414141;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIyQhto5PW .jq-selectbox li,
.cid-uIyQhto5PW .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIyQhto5PW .jq-selectbox li:hover,
.cid-uIyQhto5PW .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-uIyQhto5PW .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uIyQhto5PW .jq-number__spin.minus:hover:after,
.cid-uIyQhto5PW .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-uIyQhto5PW .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uIyQhto5PW .jq-number__spin.minus:after,
.cid-uIyQhto5PW .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-uIyQhto5PW .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uIyQhto5PW .social-list {
    margin-bottom: 3rem;
  }
  .cid-uIyQhto5PW .email-input {
    margin-top: 2rem;
  }
}
.cid-uIyQhto5PW .mbr-section-subtitle {
  color: #ff00d2;
  margin-bottom: 2.4rem;
}
.cid-uIyQhto5PW .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uIyQhto5PW .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uIyQhto5PW .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff00d2;
  transition: all .3s;
}
.cid-uIyQhto5PW .mbr-iconfont-social:hover {
  color: #ff00d2;
}
.cid-uIyQhto5PW .social-list {
  display: flex;
}
.cid-uIyQhto5PW .social-list a {
  transition: .3s;
}
.cid-uIyQhto5PW .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uIyQhto5PW .row {
  align-items: center;
}
.cid-uIyQhto5PW .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uIyQhto5PW .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uIyQhto5PW .form-btn {
  margin-top: 2.5rem;
}
.cid-uIyQhto5PW input::-webkit-input-placeholder,
.cid-uIyQhto5PW textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uIyQhto5PW input:-moz-placeholder,
.cid-uIyQhto5PW textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uIyQhto5PW .media-content {
    padding-right: 3rem;
  }
  .cid-uIyQhto5PW .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uIyQhto5PW .row {
    padding: 0 1rem;
  }
}
.cid-uIyQhto5PW .btn:hover {
  background-color: #ff00d2 !important;
  border-color: #ff00d2 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uIyQhto5PW .form-btn {
    width: 100%;
  }
  .cid-uIyQhto5PW .btn {
    width: 100%;
  }
}
.cid-uIyQhtSd5r {
  background: #272727;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-uIyQhtSd5r .image-block {
  margin: auto;
}
.cid-uIyQhtSd5r .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIyQhtSd5r .image-block {
    width: 100% !important;
  }
}
.cid-uIyQhtSd5r .container-fluid {
  padding: 0;
}
@media (min-width: 767px) {
  .cid-uIyQhtSd5r .container {
    padding: 0 2rem;
  }
}
.cid-uIyQhuazZD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uIyQhuazZD .media-container-row {
  align-items: center;
}
.cid-uIyQhuazZD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uIyQhuazZD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uIyQhuazZD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uIyQhuazZD .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uIyQhuazZD .foot-menu-item {
  transform: 0.2s;
}
.cid-uIyQhuazZD .foot-menu-item:hover a {
  color: #ff00d2 !important;
}
.cid-uIyQhuazZD .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-uIyQhuazZD .foot-menu-item:hover::before {
  width: 60px;
  background-color: #ff00d2;
}
.cid-uIyQhuazZD .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uIyQhuazZD .foot-menu {
    justify-content: center;
  }
  .cid-uIyQhuazZD .mbr-text {
    text-align: center;
  }
  .cid-uIyQhuazZD .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uIyQhuazZD .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uIyQhuazZD .link:hover {
  color: #ffffff;
}
.cid-uIyQhuazZD .media-container-row .mbr-text {
  text-align: center;
}
