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: #7e7e7e !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7e7e7e !important;
  border-color: #7e7e7e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #585858 !important;
  border-color: #585858 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #585858 !important;
  border-color: #585858 !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: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #4b4b4b;
  color: #4b4b4b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #7e7e7e;
  border-color: #7e7e7e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #7e7e7e !important;
  border-color: #7e7e7e !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: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #7e7e7e !important;
}
.text-secondary {
  color: #7e7e7e !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #4b4b4b !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: #000000 !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: #000000;
}
.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: #7e7e7e;
  border-color: #7e7e7e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #7e7e7e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bebebe;
}
.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: #b3b3b3;
}
/* Scroll to top button*/
.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: #7e7e7e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7e7e7e;
  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: #7e7e7e;
  border-bottom-color: #7e7e7e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #7e7e7e !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='%237e7e7e' %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: #000000;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #000000;
  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: #000000 !important;
}
.btn-danger:hover {
  color: #000000 !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: #7e7e7e !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #000000 !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #000000;
}
.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: #7e7e7e !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: #000000 !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: #000000;
  background: none;
}
.cid-rR8qj3Lr1I .navbar.opened {
  transition: all .3s;
  background: #000000 !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 - 3.8rem);
  }
}
.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: #000000 !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: #000000;
}
.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: #ffffff;
}
@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: #ffffff;
}
.cid-rR8qj3Lr1I .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-rR8qj3Lr1I .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tPWVSZLreu {
  background-image: url("../../../assets/images/x-n4qtbfnq8nk-unsplash-2000x3022.jpg");
}
.cid-tPWVSZLreu .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tPWVSZLreu .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-tPWVSZLreu .align-center {
    text-align: center;
  }
}
.cid-skXsrOUZ9I {
  background-image: url("../../../assets/images/brickwall.gif");
}
.cid-skXsrOUZ9I .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-skXsrOUZ9I .icon-wrap span {
  padding-left: 8px;
}
.cid-skXsrOUZ9I .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-skXsrOUZ9I .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-skXsrOUZ9I .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-skXsrOUZ9I .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-skXsrOUZ9I .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-skXsrOUZ9I a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-skXsrOUZ9I a.close:hover {
  color: #ffffff;
}
.cid-u9WKK5cFvU {
  background-image: url("../../../assets/images/victory.gif");
}
.cid-u9WKK5cFvU .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-u9WKK5cFvU .icon-wrap span {
  padding-left: 8px;
}
.cid-u9WKK5cFvU .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u9WKK5cFvU .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-u9WKK5cFvU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9WKK5cFvU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9WKK5cFvU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9WKK5cFvU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u9WKK5cFvU a.close:hover {
  color: #ffffff;
}
.cid-u9WLgTQs5D {
  background-image: url("../../../assets/images/universe.gif");
}
.cid-u9WLgTQs5D .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-u9WLgTQs5D .icon-wrap span {
  padding-left: 8px;
}
.cid-u9WLgTQs5D .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u9WLgTQs5D .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-u9WLgTQs5D .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9WLgTQs5D .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9WLgTQs5D .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9WLgTQs5D a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u9WLgTQs5D a.close:hover {
  color: #ffffff;
}
.cid-u9WM76e03C {
  background-image: url("../../../assets/images/jogger.gif");
}
.cid-u9WM76e03C .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-u9WM76e03C .icon-wrap span {
  padding-left: 8px;
}
.cid-u9WM76e03C .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-u9WM76e03C .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-u9WM76e03C .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9WM76e03C .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9WM76e03C .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9WM76e03C a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-u9WM76e03C a.close:hover {
  color: #ffffff;
}
.cid-rRBNhmeyYR {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRBNhmeyYR img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
}
.cid-rRBNhmeyYR h4 {
  margin-bottom: 0rem;
}
.cid-rRBNhmeyYR .mbr-section-title {
  margin-bottom: 0.3rem;
}
.cid-rRBNhmeyYR .mbr-section-subtitle {
  color: #f3f3f3;
  margin-bottom: 3.5rem;
}
.cid-rRBNhmeyYR .card {
  padding: 0rem;
  cursor: pointer;
}
.cid-rRBNhmeyYR .card-img {
  margin-bottom: 1.7rem;
}
.cid-rRBNhmeyYR .card-title {
  margin-bottom: 1.5rem;
}
.cid-rRBNhmeyYR .row {
  justify-content: center;
}
.cid-rRBNhmeyYR .card-box,
.cid-rRBNhmeyYR .card-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNhmeyYR .mbr-text {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-rRBNhmeyYR .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-rRBNhmeyYR .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNhmeyYR .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-rRBNhmeyYR .img-block:hover img {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.1;
}
.cid-rRBNhmeyYR .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-rRBNhmeyYR .wrapper-img {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (max-width: 992px) {
  .cid-rRBNhmeyYR .img-card {
    margin-top: 2rem;
  }
}
.cid-rRBNhmeyYR H2 {
  color: #ffffff;
}
.cid-skXpubwiWe {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #000000;
}
.cid-skXpubwiWe .mbr-iconfont-1 {
  color: #ffffff;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-skXpubwiWe .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-skXpubwiWe .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-skXpubwiWe .mbr-section-subtitle {
  margin-bottom: 6.2rem;
  color: #f3f3f3;
}
.cid-skXpubwiWe .card-img {
  margin-bottom: 1.7rem;
}
.cid-skXpubwiWe .card-title {
  margin-bottom: 1.5rem;
}
.cid-skXpubwiWe .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-skXpubwiWe .card {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-skXpubwiWe .card-inner {
    padding: 4rem 1rem 0.5rem;
    text-align: center;
  }
}
@media (min-width: 767px) {
  .cid-skXpubwiWe .row {
    padding: 0 1rem;
  }
  .cid-skXpubwiWe .card-inner {
    padding: 5rem 2.5rem 1.5rem;
  }
}
.cid-skXpubwiWe .card-inner {
  background-color: #101010;
  box-shadow: 1px 2px 15px 5px rgba(219, 219, 219, 0);
  transition: 0.7s;
}
.cid-skXpubwiWe .card-box,
.cid-skXpubwiWe .card-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-skXpubwiWe .card:hover .mbr-iconfont-1 {
  color: #000000;
}
.cid-skXpubwiWe .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-skXpubwiWe .card:hover .card-inner {
  box-shadow: 1px 2px 15px 5px rgba(219, 219, 219, 0.11);
}
.cid-skXpubwiWe .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-skXpubwiWe .card:hover .card-img {
  transform: translateY(-11px);
}
.cid-skXpubwiWe .mbr-text {
  margin-bottom: 1.5rem;
  color: #747474;
}
.cid-skXpubwiWe .vertical-line:before {
  content: '';
  background-color: #000000;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-ufRHL5wasM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ufRHL5wasM img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
}
.cid-ufRHL5wasM h4 {
  margin-bottom: 0rem;
}
.cid-ufRHL5wasM .mbr-section-title {
  margin-bottom: 0.3rem;
}
.cid-ufRHL5wasM .mbr-section-subtitle {
  color: #e9204f;
  margin-bottom: 3.5rem;
}
.cid-ufRHL5wasM .card {
  padding: 0rem;
  cursor: pointer;
}
.cid-ufRHL5wasM .card-img {
  margin-bottom: 1.7rem;
}
.cid-ufRHL5wasM .card-title {
  margin-bottom: 1.5rem;
}
.cid-ufRHL5wasM .row {
  justify-content: center;
}
.cid-ufRHL5wasM .card-box,
.cid-ufRHL5wasM .card-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-ufRHL5wasM .mbr-text {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-ufRHL5wasM .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufRHL5wasM .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-ufRHL5wasM .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-ufRHL5wasM .img-block:hover img {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.1;
}
.cid-ufRHL5wasM .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-ufRHL5wasM .wrapper-img {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (max-width: 992px) {
  .cid-ufRHL5wasM .img-card {
    margin-top: 2rem;
  }
}
.cid-ufRHL5wasM .vertical-line:before {
  content: '';
  background-color: #000000;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-rRBNg8iXAZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBNg8iXAZ .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-rRBNg8iXAZ .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-rRBNg8iXAZ .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-rRBNg8iXAZ .link {
  margin: 0;
}
.cid-rRBNg8iXAZ .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-rRBNg8iXAZ .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNg8iXAZ .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNg8iXAZ .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-rRBNg8iXAZ .card:hover {
  background-color: #000000;
}
.cid-rRBNg8iXAZ .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-rRBNg8iXAZ .card:hover .card-title {
  color: #ffffff;
}
.cid-rRBNg8iXAZ .card:hover .card-title:after {
  background: #fff;
}
.cid-rRBNg8iXAZ .card:hover .mbr-text {
  color: #ffffff;
}
.cid-rRBNg8iXAZ .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-rRBNg8iXAZ .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-rRBNg8iXAZ .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-rRBNg8iXAZ .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-rRBNg8iXAZ .card {
    padding: 0;
  }
  .cid-rRBNg8iXAZ .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBNg8iXAZ .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-rRBNg8iXAZ .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-rRBNg8iXAZ .row {
    margin: 0;
  }
}
.cid-rRBNg8iXAZ .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-rRBNg8iXAZ .mbr-section-subtitle {
  color: #b539cf;
}
.cid-rRBNg8iXAZ .mbr-section-title {
  font-weight: 800;
}
.cid-rRBNg8iXAZ h2 {
  margin-bottom: 0;
}
.cid-rRBNg8iXAZ .title-block {
  margin-bottom: 3rem;
}
.cid-rRBNg8iXAZ .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBNg8iXAZ H2 {
  color: #000000;
}
.cid-uMrAH0BlUl {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMrAH0BlUl .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uMrAH0BlUl .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uMrAH0BlUl .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uMrAH0BlUl .link {
  margin: 0;
}
.cid-uMrAH0BlUl .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMrAH0BlUl .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMrAH0BlUl .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMrAH0BlUl .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMrAH0BlUl .card:hover {
  background-color: #000000;
}
.cid-uMrAH0BlUl .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMrAH0BlUl .card:hover .card-title {
  color: #ffffff;
}
.cid-uMrAH0BlUl .card:hover .card-title:after {
  background: #fff;
}
.cid-uMrAH0BlUl .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uMrAH0BlUl .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uMrAH0BlUl .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uMrAH0BlUl .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uMrAH0BlUl .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uMrAH0BlUl .card {
    padding: 0;
  }
  .cid-uMrAH0BlUl .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMrAH0BlUl .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uMrAH0BlUl .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMrAH0BlUl .row {
    margin: 0;
  }
}
.cid-uMrAH0BlUl .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uMrAH0BlUl .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uMrAH0BlUl .mbr-section-title {
  font-weight: 800;
}
.cid-uMrAH0BlUl h2 {
  margin-bottom: 0;
}
.cid-uMrAH0BlUl .title-block {
  margin-bottom: 3rem;
}
.cid-uMrAH0BlUl .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMGK3ScH1q {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/luca-nicoletti-fka-hgds-y8-unsplash-2000x1333.jpg");
}
.cid-uMGK3ScH1q .carousel {
  z-index: 2;
  position: relative;
}
.cid-uMGK3ScH1q .user {
  padding: 0 !important;
}
.cid-uMGK3ScH1q .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-uMGK3ScH1q .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uMGK3ScH1q .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uMGK3ScH1q .carousel-item.active,
.cid-uMGK3ScH1q .carousel-item-next,
.cid-uMGK3ScH1q .carousel-item-prev {
  display: flex;
}
.cid-uMGK3ScH1q .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-uMGK3ScH1q .carousel-controls a {
  font-size: 2rem;
}
.cid-uMGK3ScH1q .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-uMGK3ScH1q .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-uMGK3ScH1q ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-uMGK3ScH1q .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-uMGK3ScH1q .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uMGK3ScH1q .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-uMGK3ScH1q .user_status {
  color: #767676;
}
.cid-uMGK3ScH1q .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-uMGK3ScH1q .mbr-text {
  margin-bottom: 1.7rem;
}
.cid-rRBNpvhxoS {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #000000;
}
.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: #000000;
  border: none;
  border-bottom: 2px solid #ffffff;
  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: #f3f3f3;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rRBNpvhxoS .jq-number__spin {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rRBNpvhxoS .jq-selectbox li,
.cid-rRBNpvhxoS .jq-selectbox li {
  background-color: #000000;
  color: #ffffff;
}
.cid-rRBNpvhxoS .jq-selectbox li:hover,
.cid-rRBNpvhxoS .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #f3f3f3;
  border-bottom-color: #f3f3f3;
}
@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: #7e7e7e;
  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: #000000;
  transition: all .3s;
}
.cid-rRBNpvhxoS .mbr-iconfont-social:hover {
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-rRBNpvhxoS .form-btn {
    width: 100%;
  }
  .cid-rRBNpvhxoS .btn {
    width: 100%;
  }
}
.cid-uJv4xxqbc4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJv4xxqbc4 .media-container-row {
  align-items: center;
}
.cid-uJv4xxqbc4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJv4xxqbc4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJv4xxqbc4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJv4xxqbc4 .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uJv4xxqbc4 .foot-menu-item {
  transform: 0.2s;
}
.cid-uJv4xxqbc4 .foot-menu-item:hover a {
  color: #000000 !important;
}
.cid-uJv4xxqbc4 .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-uJv4xxqbc4 .foot-menu-item:hover::before {
  width: 60px;
  background-color: #000000;
}
.cid-uJv4xxqbc4 .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uJv4xxqbc4 .foot-menu {
    justify-content: center;
  }
  .cid-uJv4xxqbc4 .mbr-text {
    text-align: center;
  }
  .cid-uJv4xxqbc4 .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uJv4xxqbc4 .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uJv4xxqbc4 .link:hover {
  color: #ffffff;
}
.cid-uJv4xxqbc4 .media-container-row .mbr-text {
  color: #747474;
}
.cid-uJcnX4G5Zq .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-uJcnX4G5Zq .nav-item:focus,
.cid-uJcnX4G5Zq .nav-link:focus {
  outline: none;
}
.cid-uJcnX4G5Zq .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-uJcnX4G5Zq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJcnX4G5Zq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uJcnX4G5Zq .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-uJcnX4G5Zq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJcnX4G5Zq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJcnX4G5Zq .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uJcnX4G5Zq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-uJcnX4G5Zq .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-uJcnX4G5Zq .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uJcnX4G5Zq .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJcnX4G5Zq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJcnX4G5Zq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJcnX4G5Zq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uJcnX4G5Zq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uJcnX4G5Zq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJcnX4G5Zq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJcnX4G5Zq .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-uJcnX4G5Zq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJcnX4G5Zq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uJcnX4G5Zq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uJcnX4G5Zq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJcnX4G5Zq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJcnX4G5Zq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uJcnX4G5Zq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJcnX4G5Zq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJcnX4G5Zq .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-uJcnX4G5Zq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uJcnX4G5Zq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJcnX4G5Zq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJcnX4G5Zq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uJcnX4G5Zq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uJcnX4G5Zq .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uJcnX4G5Zq .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uJcnX4G5Zq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uJcnX4G5Zq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uJcnX4G5Zq .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uJcnX4G5Zq .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-uJcnX4G5Zq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJcnX4G5Zq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJcnX4G5Zq .dropdown-item.active,
.cid-uJcnX4G5Zq .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uJcnX4G5Zq .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uJcnX4G5Zq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJcnX4G5Zq .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uJcnX4G5Zq .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uJcnX4G5Zq .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJcnX4G5Zq .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uJcnX4G5Zq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJcnX4G5Zq .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uJcnX4G5Zq .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uJcnX4G5Zq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJcnX4G5Zq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJcnX4G5Zq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJcnX4G5Zq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uJcnX4G5Zq .navbar-buttons {
  text-align: center;
}
.cid-uJcnX4G5Zq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJcnX4G5Zq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJcnX4G5Zq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uJcnX4G5Zq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uJcnX4G5Zq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uJcnX4G5Zq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uJcnX4G5Zq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJcnX4G5Zq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uJcnX4G5Zq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uJcnX4G5Zq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJcnX4G5Zq .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uJcnX4G5Zq 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-uJcnX4G5Zq .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uJcnX4G5Zq .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-uJcnX4G5Zq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJcnX4G5Zq .navbar {
    height: 77px;
  }
  .cid-uJcnX4G5Zq .navbar.opened {
    height: auto;
  }
  .cid-uJcnX4G5Zq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJcnX4G5Zq 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-uJcnX4G5Zq a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-uJcnX4G5Zq .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uJcnX4G5Zq .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uMruCetFdl {
  padding-top: 240px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/philipp-torres-1snmc30pdvi-unsplash-2000x1333.jpg");
}
.cid-uMruCetFdl .mbr-iconfont2 {
  color: #ffffff;
}
.cid-uMruCetFdl .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-uMruCetFdl .card-inner {
  background-color: #000000;
  transition: 0.7s;
  z-index: 10;
}
.cid-uMruCetFdl .btn {
  margin-left: 0rem;
}
.cid-uMruCetFdl .row {
  padding-bottom: 8rem;
}
.cid-uMruCetFdl .link {
  margin: 0;
}
.cid-uMruCetFdl .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMruCetFdl .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  transition: 0.7s;
}
.cid-uMruCetFdl .card-img {
  margin-bottom: 3.2rem;
}
.cid-uMruCetFdl .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMruCetFdl .card:hover .card-inner {
  background-color: #777777;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-uMruCetFdl .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uMruCetFdl .card:hover .card-title:after {
  background: #ffffff;
}
.cid-uMruCetFdl .media-container-row {
  align-items: flex-end;
}
.cid-uMruCetFdl .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uMruCetFdl .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-uMruCetFdl .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMruCetFdl .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uMruCetFdl .card {
    margin-bottom: 2rem;
  }
  .cid-uMruCetFdl .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMruCetFdl .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uMruCetFdl .card {
  position: relative;
}
.cid-uMruCetFdl .card-3::after {
  content: '';
  background-color: #535353;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-uMruCetFdl .card:first-child .card-inner {
  background-color: #000000;
}
.cid-uMruCetFdl .card:first-child .card-inner .mbr-iconfont1 {
  color: #ffffff;
}
.cid-uMruCetFdl .card:first-child .card-inner .card-title:after {
  background: #ffffff;
}
.cid-uMruCetFdl .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #7e7e7e !important;
}
.cid-uMruCetFdl .card:first-child .card-inner:hover .card-title:after {
  background: #7e7e7e;
}
.cid-uMruCetFdl .card:first-child .card-inner:hover {
  background-color: #535353;
}
.cid-uMruCetFdl .line-title {
  width: 40px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-uMruCetFdl .line-title-big {
  width: 72px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 2rem;
  display: inline-block;
}
.cid-uMruCetFdl .card-title,
.cid-uMruCetFdl .card-img {
  color: #ffffff;
}
.cid-uMruCetFdl .mbr-text,
.cid-uMruCetFdl .link {
  color: #ffffff;
}
.cid-uMruElWC8Y.popup-builder {
  background-color: #ffffff;
}
.cid-uMruElWC8Y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uMruElWC8Y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uMruElWC8Y .modal-content,
.cid-uMruElWC8Y .modal-dialog {
  height: auto;
}
.cid-uMruElWC8Y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uMruElWC8Y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uMruElWC8Y .form-wrapper .mbr-form .form-group,
  .cid-uMruElWC8Y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uMruElWC8Y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uMruElWC8Y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMruElWC8Y .mbr-text {
  text-align: center;
}
.cid-uMruElWC8Y .pt-0 {
  padding-top: 0 !important;
}
.cid-uMruElWC8Y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uMruElWC8Y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uMruElWC8Y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uMruElWC8Y .modal-open {
  overflow: hidden;
}
.cid-uMruElWC8Y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uMruElWC8Y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uMruElWC8Y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uMruElWC8Y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uMruElWC8Y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uMruElWC8Y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uMruElWC8Y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uMruElWC8Y .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uMruElWC8Y .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uMruElWC8Y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uMruElWC8Y .modal-backdrop.fade {
  opacity: 0;
}
.cid-uMruElWC8Y .modal-backdrop.show {
  opacity: .5;
}
.cid-uMruElWC8Y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uMruElWC8Y .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMruElWC8Y .modal-header {
    padding: 1rem;
  }
}
.cid-uMruElWC8Y .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uMruElWC8Y .modal-header .close svg {
  fill: #353535;
}
.cid-uMruElWC8Y .modal-header .close:hover {
  opacity: 1;
}
.cid-uMruElWC8Y .modal-header .close:focus {
  outline: none;
}
.cid-uMruElWC8Y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uMruElWC8Y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uMruElWC8Y .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMruElWC8Y .modal-body {
    padding: 1rem;
  }
}
.cid-uMruElWC8Y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uMruElWC8Y .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMruElWC8Y .modal-footer {
    padding: 1rem;
  }
}
.cid-uMruElWC8Y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uMruElWC8Y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uMruElWC8Y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uMruElWC8Y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uMruElWC8Y .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uMruElWC8Y .modal-lg,
  .cid-uMruElWC8Y .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uMruElWC8Y .modal-xl {
    max-width: 1140px;
  }
}
.cid-uMruElWC8Y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uMruElWC8Y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uMruElWC8Y .form-group {
  margin-bottom: 1rem;
}
.cid-uMruElWC8Y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uMruElWC8Y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uMruElWC8Y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uMruElWC8Y .mbr-section-btn {
  margin: 0;
}
.cid-uMruElWC8Y .mbr-section-btn .btn {
  margin: 0;
}
.cid-uMruFcXmQg {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uMruFcXmQg {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.cid-uMruFcXmQg .box {
  background-image: url("../../../assets/images/screenshot-2025-05-28-at-08-43-33-01.mp4-1920x1080.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMruFcXmQg .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-uMruFcXmQg .icon-wrap span {
  padding-left: 8px;
}
.cid-uMruFcXmQg .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uMruFcXmQg .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-uMruFcXmQg .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uMruFcXmQg .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uMruFcXmQg .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uMruFcXmQg a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uMruFcXmQg a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uMruFcXmQg {
    padding-top: 42px;
    padding-bottom: 21px;
  }
  .cid-uMruFcXmQg .box {
    height: 250px;
  }
}
@media (min-width: 767px) {
  .cid-uMruFcXmQg .row {
    margin: 0;
  }
}
.cid-uMruH0HJJu {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMruH0HJJu .mbr-text {
  color: #767676;
}
.cid-uMruH0HJJu .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMruH0HJJu .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMruH0HJJu h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMruH0HJJu .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMruH0HJJu .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMruH0HJJu .row {
    margin: 0;
  }
}
.cid-uMruIgeYyI {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uMruIgeYyI .mbr-text {
  color: #767676;
}
.cid-uMruIgeYyI .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMruIgeYyI .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMruIgeYyI h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMruIgeYyI .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMruIgeYyI .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMruIgeYyI .row {
    margin: 0;
  }
}
.cid-uMruJUmsA3 {
  background-color: #ffffff;
}
.cid-uMruJUmsA3 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMruJUmsA3 .carousel-item > div {
  width: 100%;
}
.cid-uMruJUmsA3 h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-uMruJUmsA3 .carousel-item.active,
.cid-uMruJUmsA3 .carousel-item-next,
.cid-uMruJUmsA3 .carousel-item-prev {
  display: flex;
}
.cid-uMruJUmsA3 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-uMruJUmsA3 .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-uMruJUmsA3 .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-uMruJUmsA3 .carousel-controls a {
    width: 5%;
  }
}
.cid-uMruJUmsA3 .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uMruJUmsA3 .img-block {
  display: flex;
  flex-direction: column;
}
.cid-uMruJUmsA3 img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uMruJUmsA3 .mbr-text {
  position: relative;
}
.cid-uMruJUmsA3 li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-uMruJUmsA3 li.active {
  background-color: #000000;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-uMruJUmsA3 .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-uMruJUmsA3 ol {
  margin-bottom: 0;
}
.cid-uMruJUmsA3 .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-uMruJUmsA3 .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-uMruJUmsA3 {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}
@media (min-width: 767px) {
  .cid-uMruJUmsA3 {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .cid-uMruJUmsA3 .row {
    margin: 0;
  }
}
.cid-uMruJUmsA3 .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMruJUmsA3 .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-uMruJUmsA3 .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-uMruJUmsA3 .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-uMruJUmsA3 .img-block:hover .desk {
  color: #101010;
}
.cid-uMruJUmsA3 .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uMruJUmsA3 .img-card {
    margin-top: 2rem;
  }
}
.cid-uMruJUmsA3 .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-uJuODan4dn {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uJuODan4dn .mbr-text {
  color: #767676;
}
.cid-uJuODan4dn .icon-1 {
  color: #ffffff;
  font-size: 3.5rem;
}
.cid-uJuODan4dn .icon-arrow {
  color: #7e7e7e;
  font-size: 1.8rem !important;
}
.cid-uJuODan4dn .link {
  margin: 0;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
  color: #777777;
}
@media (min-width: 767px) {
  .cid-uJuODan4dn .card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-uJuODan4dn .row {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uJuODan4dn .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-uJuODan4dn .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJuODan4dn .card {
    margin-bottom: 2rem;
  }
}
.cid-uJuODan4dn .text-link {
  font-weight: 800 !important;
}
.cid-uJuODan4dn .card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.cid-uJuODan4dn .card-img {
  opacity: 0;
  left: -40px;
  top: 20%;
  position: absolute;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJuODan4dn .card-icon {
  display: flex;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJuODan4dn .card:hover .card-inner {
  background-color: #000000;
}
.cid-uJuODan4dn .card:hover .icon-arrow {
  color: #fff;
}
.cid-uJuODan4dn .card:hover .text-link {
  color: #fff !important;
}
.cid-uJuODan4dn .card:hover .card-img {
  opacity: 1;
  left: -10px;
}
.cid-uJuODan4dn .card:hover .link {
  transform: translateX(42px);
}
.cid-uJuODan4dn .card:hover .card-icon {
  transform: translateX(10px);
}
.cid-uJuODan4dn h5 {
  color: #101010;
  font-weight: 800;
}
.cid-uJtSCrqkMg {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJtSCrqkMg .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uJtSCrqkMg .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uJtSCrqkMg .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uJtSCrqkMg .link {
  margin: 0;
}
.cid-uJtSCrqkMg .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uJtSCrqkMg .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtSCrqkMg .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtSCrqkMg .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uJtSCrqkMg .card:hover {
  background-color: #000000;
}
.cid-uJtSCrqkMg .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJtSCrqkMg .card:hover .card-title {
  color: #ffffff;
}
.cid-uJtSCrqkMg .card:hover .card-title:after {
  background: #fff;
}
.cid-uJtSCrqkMg .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uJtSCrqkMg .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uJtSCrqkMg .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uJtSCrqkMg .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uJtSCrqkMg .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uJtSCrqkMg .card {
    padding: 0;
  }
  .cid-uJtSCrqkMg .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uJtSCrqkMg .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uJtSCrqkMg .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJtSCrqkMg .row {
    margin: 0;
  }
}
.cid-uJtSCrqkMg .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uJtSCrqkMg .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uJtSCrqkMg .mbr-section-title {
  font-weight: 800;
}
.cid-uJtSCrqkMg h2 {
  margin-bottom: 0;
}
.cid-uJtSCrqkMg .title-block {
  margin-bottom: 3rem;
}
.cid-uJtSCrqkMg .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtSCrqkMg H2 {
  color: #000000;
}
.cid-uMIffrRy5q {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMIffrRy5q .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uMIffrRy5q .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uMIffrRy5q .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uMIffrRy5q .link {
  margin: 0;
}
.cid-uMIffrRy5q .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMIffrRy5q .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIffrRy5q .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIffrRy5q .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMIffrRy5q .card:hover {
  background-color: #000000;
}
.cid-uMIffrRy5q .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMIffrRy5q .card:hover .card-title {
  color: #ffffff;
}
.cid-uMIffrRy5q .card:hover .card-title:after {
  background: #fff;
}
.cid-uMIffrRy5q .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uMIffrRy5q .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uMIffrRy5q .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uMIffrRy5q .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uMIffrRy5q .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uMIffrRy5q .card {
    padding: 0;
  }
  .cid-uMIffrRy5q .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMIffrRy5q .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uMIffrRy5q .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMIffrRy5q .row {
    margin: 0;
  }
}
.cid-uMIffrRy5q .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uMIffrRy5q .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uMIffrRy5q .mbr-section-title {
  font-weight: 800;
}
.cid-uMIffrRy5q h2 {
  margin-bottom: 0;
}
.cid-uMIffrRy5q .title-block {
  margin-bottom: 3rem;
}
.cid-uMIffrRy5q .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uN6Tsp0ZYF {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #000000;
}
.cid-uN6Tsp0ZYF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uN6Tsp0ZYF textarea {
  min-height: 150px;
}
.cid-uN6Tsp0ZYF input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uN6Tsp0ZYF textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uN6Tsp0ZYF .form-control,
.cid-uN6Tsp0ZYF .field-input {
  padding: 1rem 0rem;
  background-color: #000000;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-uN6Tsp0ZYF .form-control input::-webkit-input-placeholder,
.cid-uN6Tsp0ZYF .field-input input::-webkit-input-placeholder,
.cid-uN6Tsp0ZYF .form-control textarea::-webkit-input-placeholder,
.cid-uN6Tsp0ZYF .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6Tsp0ZYF .form-control input:-moz-placeholder,
.cid-uN6Tsp0ZYF .field-input input:-moz-placeholder,
.cid-uN6Tsp0ZYF .form-control textarea:-moz-placeholder,
.cid-uN6Tsp0ZYF .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uN6Tsp0ZYF .jq-number__spin:hover,
.cid-uN6Tsp0ZYF .jq-number__spin:focus {
  background-color: #f3f3f3;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uN6Tsp0ZYF .jq-number__spin {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uN6Tsp0ZYF .jq-selectbox li,
.cid-uN6Tsp0ZYF .jq-selectbox li {
  background-color: #000000;
  color: #ffffff;
}
.cid-uN6Tsp0ZYF .jq-selectbox li:hover,
.cid-uN6Tsp0ZYF .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-uN6Tsp0ZYF .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uN6Tsp0ZYF .jq-number__spin.minus:hover:after,
.cid-uN6Tsp0ZYF .jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.cid-uN6Tsp0ZYF .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uN6Tsp0ZYF .jq-number__spin.minus:after,
.cid-uN6Tsp0ZYF .jq-number__spin.plus:after {
  border-top-color: #f3f3f3;
  border-bottom-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-uN6Tsp0ZYF .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uN6Tsp0ZYF .social-list {
    margin-bottom: 3rem;
  }
  .cid-uN6Tsp0ZYF .email-input {
    margin-top: 2rem;
  }
}
.cid-uN6Tsp0ZYF .mbr-section-subtitle {
  color: #7e7e7e;
  margin-bottom: 2.4rem;
}
.cid-uN6Tsp0ZYF .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uN6Tsp0ZYF .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uN6Tsp0ZYF .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #000000;
  transition: all .3s;
}
.cid-uN6Tsp0ZYF .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-uN6Tsp0ZYF .social-list {
  display: flex;
}
.cid-uN6Tsp0ZYF .social-list a {
  transition: .3s;
}
.cid-uN6Tsp0ZYF .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uN6Tsp0ZYF .row {
  align-items: center;
}
.cid-uN6Tsp0ZYF .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uN6Tsp0ZYF .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uN6Tsp0ZYF .form-btn {
  margin-top: 2.5rem;
}
.cid-uN6Tsp0ZYF input::-webkit-input-placeholder,
.cid-uN6Tsp0ZYF textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6Tsp0ZYF input:-moz-placeholder,
.cid-uN6Tsp0ZYF textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uN6Tsp0ZYF .media-content {
    padding-right: 3rem;
  }
  .cid-uN6Tsp0ZYF .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uN6Tsp0ZYF .row {
    padding: 0 1rem;
  }
}
.cid-uN6Tsp0ZYF .btn:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uN6Tsp0ZYF .form-btn {
    width: 100%;
  }
  .cid-uN6Tsp0ZYF .btn {
    width: 100%;
  }
}
.cid-uJcnXdKfOj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJcnXdKfOj .media-container-row {
  align-items: center;
}
.cid-uJcnXdKfOj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJcnXdKfOj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJcnXdKfOj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJcnXdKfOj .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uJcnXdKfOj .foot-menu-item {
  transform: 0.2s;
}
.cid-uJcnXdKfOj .foot-menu-item:hover a {
  color: #000000 !important;
}
.cid-uJcnXdKfOj .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-uJcnXdKfOj .foot-menu-item:hover::before {
  width: 60px;
  background-color: #000000;
}
.cid-uJcnXdKfOj .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uJcnXdKfOj .foot-menu {
    justify-content: center;
  }
  .cid-uJcnXdKfOj .mbr-text {
    text-align: center;
  }
  .cid-uJcnXdKfOj .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uJcnXdKfOj .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uJcnXdKfOj .link:hover {
  color: #ffffff;
}
.cid-uJcnXdKfOj .media-container-row .mbr-text {
  color: #747474;
}
.cid-uJd8tcWAyO .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-uJd8tcWAyO .nav-item:focus,
.cid-uJd8tcWAyO .nav-link:focus {
  outline: none;
}
.cid-uJd8tcWAyO .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-uJd8tcWAyO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJd8tcWAyO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uJd8tcWAyO .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-uJd8tcWAyO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJd8tcWAyO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJd8tcWAyO .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uJd8tcWAyO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-uJd8tcWAyO .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-uJd8tcWAyO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uJd8tcWAyO .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJd8tcWAyO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJd8tcWAyO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJd8tcWAyO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uJd8tcWAyO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uJd8tcWAyO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJd8tcWAyO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJd8tcWAyO .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-uJd8tcWAyO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJd8tcWAyO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uJd8tcWAyO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uJd8tcWAyO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJd8tcWAyO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJd8tcWAyO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uJd8tcWAyO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJd8tcWAyO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJd8tcWAyO .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-uJd8tcWAyO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uJd8tcWAyO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJd8tcWAyO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJd8tcWAyO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uJd8tcWAyO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uJd8tcWAyO .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uJd8tcWAyO .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uJd8tcWAyO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uJd8tcWAyO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uJd8tcWAyO .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uJd8tcWAyO .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-uJd8tcWAyO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJd8tcWAyO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJd8tcWAyO .dropdown-item.active,
.cid-uJd8tcWAyO .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uJd8tcWAyO .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uJd8tcWAyO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJd8tcWAyO .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uJd8tcWAyO .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uJd8tcWAyO .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJd8tcWAyO .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uJd8tcWAyO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJd8tcWAyO .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uJd8tcWAyO .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uJd8tcWAyO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJd8tcWAyO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJd8tcWAyO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJd8tcWAyO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uJd8tcWAyO .navbar-buttons {
  text-align: center;
}
.cid-uJd8tcWAyO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJd8tcWAyO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJd8tcWAyO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uJd8tcWAyO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uJd8tcWAyO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uJd8tcWAyO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uJd8tcWAyO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJd8tcWAyO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uJd8tcWAyO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uJd8tcWAyO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJd8tcWAyO .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uJd8tcWAyO 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-uJd8tcWAyO .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uJd8tcWAyO .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-uJd8tcWAyO .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJd8tcWAyO .navbar {
    height: 77px;
  }
  .cid-uJd8tcWAyO .navbar.opened {
    height: auto;
  }
  .cid-uJd8tcWAyO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJd8tcWAyO 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-uJd8tcWAyO a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-uJd8tcWAyO .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uJd8tcWAyO .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uMrwW8jOAd {
  padding-top: 240px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mario-mrad-rgg-bctniuo-unsplash-2000x1333.jpg");
}
.cid-uMrwW8jOAd .mbr-iconfont2 {
  color: #ffffff;
}
.cid-uMrwW8jOAd .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-uMrwW8jOAd .card-inner {
  background-color: #000000;
  transition: 0.7s;
  z-index: 10;
}
.cid-uMrwW8jOAd .btn {
  margin-left: 0rem;
}
.cid-uMrwW8jOAd .row {
  padding-bottom: 8rem;
}
.cid-uMrwW8jOAd .link {
  margin: 0;
}
.cid-uMrwW8jOAd .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMrwW8jOAd .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  transition: 0.7s;
}
.cid-uMrwW8jOAd .card-img {
  margin-bottom: 3.2rem;
}
.cid-uMrwW8jOAd .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMrwW8jOAd .card:hover .card-inner {
  background-color: #777777;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-uMrwW8jOAd .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uMrwW8jOAd .card:hover .card-title:after {
  background: #ffffff;
}
.cid-uMrwW8jOAd .media-container-row {
  align-items: flex-end;
}
.cid-uMrwW8jOAd .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uMrwW8jOAd .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-uMrwW8jOAd .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMrwW8jOAd .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uMrwW8jOAd .card {
    margin-bottom: 2rem;
  }
  .cid-uMrwW8jOAd .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMrwW8jOAd .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uMrwW8jOAd .card {
  position: relative;
}
.cid-uMrwW8jOAd .card-3::after {
  content: '';
  background-color: #535353;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-uMrwW8jOAd .card:first-child .card-inner {
  background-color: #000000;
}
.cid-uMrwW8jOAd .card:first-child .card-inner .mbr-iconfont1 {
  color: #ffffff;
}
.cid-uMrwW8jOAd .card:first-child .card-inner .card-title:after {
  background: #ffffff;
}
.cid-uMrwW8jOAd .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #7e7e7e !important;
}
.cid-uMrwW8jOAd .card:first-child .card-inner:hover .card-title:after {
  background: #7e7e7e;
}
.cid-uMrwW8jOAd .card:first-child .card-inner:hover {
  background-color: #535353;
}
.cid-uMrwW8jOAd .line-title {
  width: 40px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-uMrwW8jOAd .line-title-big {
  width: 72px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 2rem;
  display: inline-block;
}
.cid-uMrwW8jOAd .card-title,
.cid-uMrwW8jOAd .card-img {
  color: #ffffff;
}
.cid-uMrwW8jOAd .mbr-text,
.cid-uMrwW8jOAd .link {
  color: #ffffff;
}
.cid-uMrFXRyXEa.popup-builder {
  background-color: #ffffff;
}
.cid-uMrFXRyXEa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uMrFXRyXEa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uMrFXRyXEa .modal-content,
.cid-uMrFXRyXEa .modal-dialog {
  height: auto;
}
.cid-uMrFXRyXEa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uMrFXRyXEa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uMrFXRyXEa .form-wrapper .mbr-form .form-group,
  .cid-uMrFXRyXEa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uMrFXRyXEa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uMrFXRyXEa .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMrFXRyXEa .mbr-text {
  text-align: center;
}
.cid-uMrFXRyXEa .pt-0 {
  padding-top: 0 !important;
}
.cid-uMrFXRyXEa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uMrFXRyXEa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uMrFXRyXEa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uMrFXRyXEa .modal-open {
  overflow: hidden;
}
.cid-uMrFXRyXEa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uMrFXRyXEa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uMrFXRyXEa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uMrFXRyXEa .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uMrFXRyXEa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uMrFXRyXEa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uMrFXRyXEa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uMrFXRyXEa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uMrFXRyXEa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uMrFXRyXEa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uMrFXRyXEa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uMrFXRyXEa .modal-backdrop.show {
  opacity: .5;
}
.cid-uMrFXRyXEa .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uMrFXRyXEa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrFXRyXEa .modal-header {
    padding: 1rem;
  }
}
.cid-uMrFXRyXEa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uMrFXRyXEa .modal-header .close svg {
  fill: #353535;
}
.cid-uMrFXRyXEa .modal-header .close:hover {
  opacity: 1;
}
.cid-uMrFXRyXEa .modal-header .close:focus {
  outline: none;
}
.cid-uMrFXRyXEa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uMrFXRyXEa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uMrFXRyXEa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrFXRyXEa .modal-body {
    padding: 1rem;
  }
}
.cid-uMrFXRyXEa .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uMrFXRyXEa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrFXRyXEa .modal-footer {
    padding: 1rem;
  }
}
.cid-uMrFXRyXEa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uMrFXRyXEa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uMrFXRyXEa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uMrFXRyXEa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uMrFXRyXEa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uMrFXRyXEa .modal-lg,
  .cid-uMrFXRyXEa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uMrFXRyXEa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uMrFXRyXEa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uMrFXRyXEa .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uMrFXRyXEa .form-group {
  margin-bottom: 1rem;
}
.cid-uMrFXRyXEa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uMrFXRyXEa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uMrFXRyXEa .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uMrFXRyXEa .mbr-section-btn {
  margin: 0;
}
.cid-uMrFXRyXEa .mbr-section-btn .btn {
  margin: 0;
}
.cid-uMrwY2sr1f {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uMrwY2sr1f {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.cid-uMrwY2sr1f .box {
  background-image: url("../../../assets/images/screenshot-2025-05-27-at-20-21-00-13.mp4-1920x1080.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMrwY2sr1f .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-uMrwY2sr1f .icon-wrap span {
  padding-left: 8px;
}
.cid-uMrwY2sr1f .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uMrwY2sr1f .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-uMrwY2sr1f .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uMrwY2sr1f .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uMrwY2sr1f .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uMrwY2sr1f a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uMrwY2sr1f a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uMrwY2sr1f {
    padding-top: 42px;
    padding-bottom: 21px;
  }
  .cid-uMrwY2sr1f .box {
    height: 250px;
  }
}
@media (min-width: 767px) {
  .cid-uMrwY2sr1f .row {
    margin: 0;
  }
}
.cid-uMudhFgBhJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMudhFgBhJ .mbr-text {
  color: #767676;
}
.cid-uMudhFgBhJ .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMudhFgBhJ .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMudhFgBhJ h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMudhFgBhJ .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMudhFgBhJ .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMudhFgBhJ .row {
    margin: 0;
  }
}
.cid-uMudipGRst {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uMudipGRst .mbr-text {
  color: #767676;
}
.cid-uMudipGRst .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMudipGRst .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMudipGRst h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMudipGRst .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMudipGRst .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMudipGRst .row {
    margin: 0;
  }
}
.cid-uMrycP6i4E {
  background-color: #ffffff;
}
.cid-uMrycP6i4E .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMrycP6i4E .carousel-item > div {
  width: 100%;
}
.cid-uMrycP6i4E h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-uMrycP6i4E .carousel-item.active,
.cid-uMrycP6i4E .carousel-item-next,
.cid-uMrycP6i4E .carousel-item-prev {
  display: flex;
}
.cid-uMrycP6i4E .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-uMrycP6i4E .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-uMrycP6i4E .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-uMrycP6i4E .carousel-controls a {
    width: 5%;
  }
}
.cid-uMrycP6i4E .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uMrycP6i4E .img-block {
  display: flex;
  flex-direction: column;
}
.cid-uMrycP6i4E img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uMrycP6i4E .mbr-text {
  position: relative;
}
.cid-uMrycP6i4E li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-uMrycP6i4E li.active {
  background-color: #000000;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-uMrycP6i4E .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-uMrycP6i4E ol {
  margin-bottom: 0;
}
.cid-uMrycP6i4E .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-uMrycP6i4E .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-uMrycP6i4E {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}
@media (min-width: 767px) {
  .cid-uMrycP6i4E {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .cid-uMrycP6i4E .row {
    margin: 0;
  }
}
.cid-uMrycP6i4E .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMrycP6i4E .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-uMrycP6i4E .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-uMrycP6i4E .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-uMrycP6i4E .img-block:hover .desk {
  color: #101010;
}
.cid-uMrycP6i4E .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uMrycP6i4E .img-card {
    margin-top: 2rem;
  }
}
.cid-uMrycP6i4E .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-uJvozmadkS {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uJvozmadkS .mbr-text {
  color: #767676;
}
.cid-uJvozmadkS .icon-1 {
  color: #ffffff;
  font-size: 3.5rem;
}
.cid-uJvozmadkS .icon-arrow {
  color: #7e7e7e;
  font-size: 1.8rem !important;
}
.cid-uJvozmadkS .link {
  margin: 0;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
  color: #777777;
}
@media (min-width: 767px) {
  .cid-uJvozmadkS .card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-uJvozmadkS .row {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uJvozmadkS .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-uJvozmadkS .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJvozmadkS .card {
    margin-bottom: 2rem;
  }
}
.cid-uJvozmadkS .text-link {
  font-weight: 800 !important;
}
.cid-uJvozmadkS .card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.cid-uJvozmadkS .card-img {
  opacity: 0;
  left: -40px;
  top: 20%;
  position: absolute;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJvozmadkS .card-icon {
  display: flex;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJvozmadkS .card:hover .card-inner {
  background-color: #000000;
}
.cid-uJvozmadkS .card:hover .icon-arrow {
  color: #fff;
}
.cid-uJvozmadkS .card:hover .text-link {
  color: #fff !important;
}
.cid-uJvozmadkS .card:hover .card-img {
  opacity: 1;
  left: -10px;
}
.cid-uJvozmadkS .card:hover .link {
  transform: translateX(42px);
}
.cid-uJvozmadkS .card:hover .card-icon {
  transform: translateX(10px);
}
.cid-uJvozmadkS h5 {
  color: #101010;
  font-weight: 800;
}
.cid-uJtSPT2KcX {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJtSPT2KcX .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uJtSPT2KcX .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uJtSPT2KcX .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uJtSPT2KcX .link {
  margin: 0;
}
.cid-uJtSPT2KcX .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uJtSPT2KcX .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtSPT2KcX .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtSPT2KcX .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uJtSPT2KcX .card:hover {
  background-color: #000000;
}
.cid-uJtSPT2KcX .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJtSPT2KcX .card:hover .card-title {
  color: #ffffff;
}
.cid-uJtSPT2KcX .card:hover .card-title:after {
  background: #fff;
}
.cid-uJtSPT2KcX .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uJtSPT2KcX .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uJtSPT2KcX .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uJtSPT2KcX .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uJtSPT2KcX .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uJtSPT2KcX .card {
    padding: 0;
  }
  .cid-uJtSPT2KcX .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uJtSPT2KcX .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uJtSPT2KcX .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJtSPT2KcX .row {
    margin: 0;
  }
}
.cid-uJtSPT2KcX .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uJtSPT2KcX .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uJtSPT2KcX .mbr-section-title {
  font-weight: 800;
}
.cid-uJtSPT2KcX h2 {
  margin-bottom: 0;
}
.cid-uJtSPT2KcX .title-block {
  margin-bottom: 3rem;
}
.cid-uJtSPT2KcX .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtSPT2KcX H2 {
  color: #000000;
}
.cid-uMIfovCAs2 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMIfovCAs2 .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uMIfovCAs2 .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uMIfovCAs2 .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uMIfovCAs2 .link {
  margin: 0;
}
.cid-uMIfovCAs2 .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMIfovCAs2 .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIfovCAs2 .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIfovCAs2 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMIfovCAs2 .card:hover {
  background-color: #000000;
}
.cid-uMIfovCAs2 .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMIfovCAs2 .card:hover .card-title {
  color: #ffffff;
}
.cid-uMIfovCAs2 .card:hover .card-title:after {
  background: #fff;
}
.cid-uMIfovCAs2 .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uMIfovCAs2 .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uMIfovCAs2 .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uMIfovCAs2 .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uMIfovCAs2 .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uMIfovCAs2 .card {
    padding: 0;
  }
  .cid-uMIfovCAs2 .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMIfovCAs2 .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uMIfovCAs2 .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMIfovCAs2 .row {
    margin: 0;
  }
}
.cid-uMIfovCAs2 .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uMIfovCAs2 .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uMIfovCAs2 .mbr-section-title {
  font-weight: 800;
}
.cid-uMIfovCAs2 h2 {
  margin-bottom: 0;
}
.cid-uMIfovCAs2 .title-block {
  margin-bottom: 3rem;
}
.cid-uMIfovCAs2 .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uN6TxnqOAR {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #000000;
}
.cid-uN6TxnqOAR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uN6TxnqOAR textarea {
  min-height: 150px;
}
.cid-uN6TxnqOAR input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uN6TxnqOAR textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uN6TxnqOAR .form-control,
.cid-uN6TxnqOAR .field-input {
  padding: 1rem 0rem;
  background-color: #000000;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-uN6TxnqOAR .form-control input::-webkit-input-placeholder,
.cid-uN6TxnqOAR .field-input input::-webkit-input-placeholder,
.cid-uN6TxnqOAR .form-control textarea::-webkit-input-placeholder,
.cid-uN6TxnqOAR .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6TxnqOAR .form-control input:-moz-placeholder,
.cid-uN6TxnqOAR .field-input input:-moz-placeholder,
.cid-uN6TxnqOAR .form-control textarea:-moz-placeholder,
.cid-uN6TxnqOAR .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uN6TxnqOAR .jq-number__spin:hover,
.cid-uN6TxnqOAR .jq-number__spin:focus {
  background-color: #f3f3f3;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uN6TxnqOAR .jq-number__spin {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uN6TxnqOAR .jq-selectbox li,
.cid-uN6TxnqOAR .jq-selectbox li {
  background-color: #000000;
  color: #ffffff;
}
.cid-uN6TxnqOAR .jq-selectbox li:hover,
.cid-uN6TxnqOAR .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-uN6TxnqOAR .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uN6TxnqOAR .jq-number__spin.minus:hover:after,
.cid-uN6TxnqOAR .jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.cid-uN6TxnqOAR .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uN6TxnqOAR .jq-number__spin.minus:after,
.cid-uN6TxnqOAR .jq-number__spin.plus:after {
  border-top-color: #f3f3f3;
  border-bottom-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-uN6TxnqOAR .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uN6TxnqOAR .social-list {
    margin-bottom: 3rem;
  }
  .cid-uN6TxnqOAR .email-input {
    margin-top: 2rem;
  }
}
.cid-uN6TxnqOAR .mbr-section-subtitle {
  color: #7e7e7e;
  margin-bottom: 2.4rem;
}
.cid-uN6TxnqOAR .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uN6TxnqOAR .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uN6TxnqOAR .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #000000;
  transition: all .3s;
}
.cid-uN6TxnqOAR .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-uN6TxnqOAR .social-list {
  display: flex;
}
.cid-uN6TxnqOAR .social-list a {
  transition: .3s;
}
.cid-uN6TxnqOAR .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uN6TxnqOAR .row {
  align-items: center;
}
.cid-uN6TxnqOAR .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uN6TxnqOAR .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uN6TxnqOAR .form-btn {
  margin-top: 2.5rem;
}
.cid-uN6TxnqOAR input::-webkit-input-placeholder,
.cid-uN6TxnqOAR textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6TxnqOAR input:-moz-placeholder,
.cid-uN6TxnqOAR textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uN6TxnqOAR .media-content {
    padding-right: 3rem;
  }
  .cid-uN6TxnqOAR .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uN6TxnqOAR .row {
    padding: 0 1rem;
  }
}
.cid-uN6TxnqOAR .btn:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uN6TxnqOAR .form-btn {
    width: 100%;
  }
  .cid-uN6TxnqOAR .btn {
    width: 100%;
  }
}
.cid-uJd8thfnYV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJd8thfnYV .media-container-row {
  align-items: center;
}
.cid-uJd8thfnYV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJd8thfnYV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJd8thfnYV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJd8thfnYV .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uJd8thfnYV .foot-menu-item {
  transform: 0.2s;
}
.cid-uJd8thfnYV .foot-menu-item:hover a {
  color: #000000 !important;
}
.cid-uJd8thfnYV .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-uJd8thfnYV .foot-menu-item:hover::before {
  width: 60px;
  background-color: #000000;
}
.cid-uJd8thfnYV .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uJd8thfnYV .foot-menu {
    justify-content: center;
  }
  .cid-uJd8thfnYV .mbr-text {
    text-align: center;
  }
  .cid-uJd8thfnYV .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uJd8thfnYV .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uJd8thfnYV .link:hover {
  color: #ffffff;
}
.cid-uJd8thfnYV .media-container-row .mbr-text {
  color: #747474;
}
.cid-uJd9NIEq8j .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-uJd9NIEq8j .nav-item:focus,
.cid-uJd9NIEq8j .nav-link:focus {
  outline: none;
}
.cid-uJd9NIEq8j .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-uJd9NIEq8j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJd9NIEq8j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uJd9NIEq8j .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-uJd9NIEq8j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJd9NIEq8j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJd9NIEq8j .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uJd9NIEq8j .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-uJd9NIEq8j .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-uJd9NIEq8j .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uJd9NIEq8j .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJd9NIEq8j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJd9NIEq8j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJd9NIEq8j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uJd9NIEq8j .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uJd9NIEq8j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJd9NIEq8j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJd9NIEq8j .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-uJd9NIEq8j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJd9NIEq8j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uJd9NIEq8j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uJd9NIEq8j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJd9NIEq8j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJd9NIEq8j .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uJd9NIEq8j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJd9NIEq8j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJd9NIEq8j .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-uJd9NIEq8j .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uJd9NIEq8j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJd9NIEq8j .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJd9NIEq8j .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uJd9NIEq8j .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uJd9NIEq8j .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uJd9NIEq8j .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uJd9NIEq8j .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uJd9NIEq8j .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uJd9NIEq8j .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uJd9NIEq8j .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-uJd9NIEq8j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJd9NIEq8j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJd9NIEq8j .dropdown-item.active,
.cid-uJd9NIEq8j .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uJd9NIEq8j .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uJd9NIEq8j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJd9NIEq8j .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uJd9NIEq8j .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uJd9NIEq8j .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJd9NIEq8j .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uJd9NIEq8j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJd9NIEq8j .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uJd9NIEq8j .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uJd9NIEq8j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJd9NIEq8j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJd9NIEq8j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJd9NIEq8j ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uJd9NIEq8j .navbar-buttons {
  text-align: center;
}
.cid-uJd9NIEq8j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJd9NIEq8j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJd9NIEq8j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uJd9NIEq8j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uJd9NIEq8j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uJd9NIEq8j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uJd9NIEq8j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJd9NIEq8j nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uJd9NIEq8j nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uJd9NIEq8j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJd9NIEq8j .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uJd9NIEq8j 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-uJd9NIEq8j .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uJd9NIEq8j .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-uJd9NIEq8j .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJd9NIEq8j .navbar {
    height: 77px;
  }
  .cid-uJd9NIEq8j .navbar.opened {
    height: auto;
  }
  .cid-uJd9NIEq8j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJd9NIEq8j 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-uJd9NIEq8j a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-uJd9NIEq8j .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uJd9NIEq8j .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uMrxIPHuSa {
  padding-top: 240px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/maick-maciel-xjfbvg1edam-unsplash-2000x1402.jpg");
}
.cid-uMrxIPHuSa .mbr-iconfont2 {
  color: #ffffff;
}
.cid-uMrxIPHuSa .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-uMrxIPHuSa .card-inner {
  background-color: #000000;
  transition: 0.7s;
  z-index: 10;
}
.cid-uMrxIPHuSa .btn {
  margin-left: 0rem;
}
.cid-uMrxIPHuSa .row {
  padding-bottom: 8rem;
}
.cid-uMrxIPHuSa .link {
  margin: 0;
}
.cid-uMrxIPHuSa .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMrxIPHuSa .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  transition: 0.7s;
}
.cid-uMrxIPHuSa .card-img {
  margin-bottom: 3.2rem;
}
.cid-uMrxIPHuSa .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMrxIPHuSa .card:hover .card-inner {
  background-color: #777777;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-uMrxIPHuSa .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uMrxIPHuSa .card:hover .card-title:after {
  background: #ffffff;
}
.cid-uMrxIPHuSa .media-container-row {
  align-items: flex-end;
}
.cid-uMrxIPHuSa .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uMrxIPHuSa .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-uMrxIPHuSa .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMrxIPHuSa .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uMrxIPHuSa .card {
    margin-bottom: 2rem;
  }
  .cid-uMrxIPHuSa .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMrxIPHuSa .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uMrxIPHuSa .card {
  position: relative;
}
.cid-uMrxIPHuSa .card-3::after {
  content: '';
  background-color: #535353;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-uMrxIPHuSa .card:first-child .card-inner {
  background-color: #000000;
}
.cid-uMrxIPHuSa .card:first-child .card-inner .mbr-iconfont1 {
  color: #ffffff;
}
.cid-uMrxIPHuSa .card:first-child .card-inner .card-title:after {
  background: #ffffff;
}
.cid-uMrxIPHuSa .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #7e7e7e !important;
}
.cid-uMrxIPHuSa .card:first-child .card-inner:hover .card-title:after {
  background: #7e7e7e;
}
.cid-uMrxIPHuSa .card:first-child .card-inner:hover {
  background-color: #535353;
}
.cid-uMrxIPHuSa .line-title {
  width: 40px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-uMrxIPHuSa .line-title-big {
  width: 72px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 2rem;
  display: inline-block;
}
.cid-uMrxIPHuSa .card-title,
.cid-uMrxIPHuSa .card-img {
  color: #ffffff;
}
.cid-uMrxIPHuSa .mbr-text,
.cid-uMrxIPHuSa .link {
  color: #ffffff;
}
.cid-uMrHodhrbT.popup-builder {
  background-color: #ffffff;
}
.cid-uMrHodhrbT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uMrHodhrbT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uMrHodhrbT .modal-content,
.cid-uMrHodhrbT .modal-dialog {
  height: auto;
}
.cid-uMrHodhrbT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uMrHodhrbT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uMrHodhrbT .form-wrapper .mbr-form .form-group,
  .cid-uMrHodhrbT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uMrHodhrbT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uMrHodhrbT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMrHodhrbT .mbr-text {
  text-align: center;
}
.cid-uMrHodhrbT .pt-0 {
  padding-top: 0 !important;
}
.cid-uMrHodhrbT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uMrHodhrbT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uMrHodhrbT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uMrHodhrbT .modal-open {
  overflow: hidden;
}
.cid-uMrHodhrbT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uMrHodhrbT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uMrHodhrbT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uMrHodhrbT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uMrHodhrbT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uMrHodhrbT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uMrHodhrbT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uMrHodhrbT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uMrHodhrbT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uMrHodhrbT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uMrHodhrbT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uMrHodhrbT .modal-backdrop.show {
  opacity: .5;
}
.cid-uMrHodhrbT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uMrHodhrbT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrHodhrbT .modal-header {
    padding: 1rem;
  }
}
.cid-uMrHodhrbT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uMrHodhrbT .modal-header .close svg {
  fill: #353535;
}
.cid-uMrHodhrbT .modal-header .close:hover {
  opacity: 1;
}
.cid-uMrHodhrbT .modal-header .close:focus {
  outline: none;
}
.cid-uMrHodhrbT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uMrHodhrbT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uMrHodhrbT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrHodhrbT .modal-body {
    padding: 1rem;
  }
}
.cid-uMrHodhrbT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uMrHodhrbT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrHodhrbT .modal-footer {
    padding: 1rem;
  }
}
.cid-uMrHodhrbT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uMrHodhrbT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uMrHodhrbT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uMrHodhrbT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uMrHodhrbT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uMrHodhrbT .modal-lg,
  .cid-uMrHodhrbT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uMrHodhrbT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uMrHodhrbT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uMrHodhrbT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uMrHodhrbT .form-group {
  margin-bottom: 1rem;
}
.cid-uMrHodhrbT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uMrHodhrbT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uMrHodhrbT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uMrHodhrbT .mbr-section-btn {
  margin: 0;
}
.cid-uMrHodhrbT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uMrxKHebXT {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uMrxKHebXT {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.cid-uMrxKHebXT .box {
  background-image: url("../../../assets/images/screenshot-2025-06-03-at-15-13-01-25.mp4-1360x768.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMrxKHebXT .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-uMrxKHebXT .icon-wrap span {
  padding-left: 8px;
}
.cid-uMrxKHebXT .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uMrxKHebXT .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-uMrxKHebXT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uMrxKHebXT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uMrxKHebXT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uMrxKHebXT a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uMrxKHebXT a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uMrxKHebXT {
    padding-top: 42px;
    padding-bottom: 21px;
  }
  .cid-uMrxKHebXT .box {
    height: 250px;
  }
}
@media (min-width: 767px) {
  .cid-uMrxKHebXT .row {
    margin: 0;
  }
}
.cid-uMudof2zS9 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMudof2zS9 .mbr-text {
  color: #767676;
}
.cid-uMudof2zS9 .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMudof2zS9 .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMudof2zS9 h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMudof2zS9 .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMudof2zS9 .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMudof2zS9 .row {
    margin: 0;
  }
}
.cid-uMudoUzpiq {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uMudoUzpiq .mbr-text {
  color: #767676;
}
.cid-uMudoUzpiq .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMudoUzpiq .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMudoUzpiq h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMudoUzpiq .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMudoUzpiq .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMudoUzpiq .row {
    margin: 0;
  }
}
.cid-uMrxSrebo5 {
  background-color: #ffffff;
}
.cid-uMrxSrebo5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMrxSrebo5 .carousel-item > div {
  width: 100%;
}
.cid-uMrxSrebo5 h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-uMrxSrebo5 .carousel-item.active,
.cid-uMrxSrebo5 .carousel-item-next,
.cid-uMrxSrebo5 .carousel-item-prev {
  display: flex;
}
.cid-uMrxSrebo5 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-uMrxSrebo5 .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-uMrxSrebo5 .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-uMrxSrebo5 .carousel-controls a {
    width: 5%;
  }
}
.cid-uMrxSrebo5 .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uMrxSrebo5 .img-block {
  display: flex;
  flex-direction: column;
}
.cid-uMrxSrebo5 img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uMrxSrebo5 .mbr-text {
  position: relative;
}
.cid-uMrxSrebo5 li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-uMrxSrebo5 li.active {
  background-color: #000000;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-uMrxSrebo5 .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-uMrxSrebo5 ol {
  margin-bottom: 0;
}
.cid-uMrxSrebo5 .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-uMrxSrebo5 .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-uMrxSrebo5 {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}
@media (min-width: 767px) {
  .cid-uMrxSrebo5 {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .cid-uMrxSrebo5 .row {
    margin: 0;
  }
}
.cid-uMrxSrebo5 .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMrxSrebo5 .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-uMrxSrebo5 .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-uMrxSrebo5 .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-uMrxSrebo5 .img-block:hover .desk {
  color: #101010;
}
.cid-uMrxSrebo5 .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uMrxSrebo5 .img-card {
    margin-top: 2rem;
  }
}
.cid-uMrxSrebo5 .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-uJAkvbCXEb {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uJAkvbCXEb .mbr-text {
  color: #767676;
}
.cid-uJAkvbCXEb .icon-1 {
  color: #ffffff;
  font-size: 3.5rem;
}
.cid-uJAkvbCXEb .icon-arrow {
  color: #7e7e7e;
  font-size: 1.8rem !important;
}
.cid-uJAkvbCXEb .link {
  margin: 0;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
  color: #777777;
}
@media (min-width: 767px) {
  .cid-uJAkvbCXEb .card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-uJAkvbCXEb .row {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uJAkvbCXEb .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-uJAkvbCXEb .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJAkvbCXEb .card {
    margin-bottom: 2rem;
  }
}
.cid-uJAkvbCXEb .text-link {
  font-weight: 800 !important;
}
.cid-uJAkvbCXEb .card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.cid-uJAkvbCXEb .card-img {
  opacity: 0;
  left: -40px;
  top: 20%;
  position: absolute;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJAkvbCXEb .card-icon {
  display: flex;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJAkvbCXEb .card:hover .card-inner {
  background-color: #000000;
}
.cid-uJAkvbCXEb .card:hover .icon-arrow {
  color: #fff;
}
.cid-uJAkvbCXEb .card:hover .text-link {
  color: #fff !important;
}
.cid-uJAkvbCXEb .card:hover .card-img {
  opacity: 1;
  left: -10px;
}
.cid-uJAkvbCXEb .card:hover .link {
  transform: translateX(42px);
}
.cid-uJAkvbCXEb .card:hover .card-icon {
  transform: translateX(10px);
}
.cid-uJAkvbCXEb h5 {
  color: #101010;
  font-weight: 800;
}
.cid-uJtT0NVdic {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJtT0NVdic .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uJtT0NVdic .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uJtT0NVdic .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uJtT0NVdic .link {
  margin: 0;
}
.cid-uJtT0NVdic .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uJtT0NVdic .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtT0NVdic .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtT0NVdic .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uJtT0NVdic .card:hover {
  background-color: #000000;
}
.cid-uJtT0NVdic .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJtT0NVdic .card:hover .card-title {
  color: #ffffff;
}
.cid-uJtT0NVdic .card:hover .card-title:after {
  background: #fff;
}
.cid-uJtT0NVdic .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uJtT0NVdic .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uJtT0NVdic .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uJtT0NVdic .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uJtT0NVdic .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uJtT0NVdic .card {
    padding: 0;
  }
  .cid-uJtT0NVdic .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uJtT0NVdic .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uJtT0NVdic .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJtT0NVdic .row {
    margin: 0;
  }
}
.cid-uJtT0NVdic .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uJtT0NVdic .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uJtT0NVdic .mbr-section-title {
  font-weight: 800;
}
.cid-uJtT0NVdic h2 {
  margin-bottom: 0;
}
.cid-uJtT0NVdic .title-block {
  margin-bottom: 3rem;
}
.cid-uJtT0NVdic .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtT0NVdic H2 {
  color: #000000;
}
.cid-uMIfsTlIbZ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMIfsTlIbZ .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uMIfsTlIbZ .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uMIfsTlIbZ .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uMIfsTlIbZ .link {
  margin: 0;
}
.cid-uMIfsTlIbZ .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMIfsTlIbZ .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIfsTlIbZ .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIfsTlIbZ .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMIfsTlIbZ .card:hover {
  background-color: #000000;
}
.cid-uMIfsTlIbZ .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMIfsTlIbZ .card:hover .card-title {
  color: #ffffff;
}
.cid-uMIfsTlIbZ .card:hover .card-title:after {
  background: #fff;
}
.cid-uMIfsTlIbZ .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uMIfsTlIbZ .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uMIfsTlIbZ .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uMIfsTlIbZ .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uMIfsTlIbZ .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uMIfsTlIbZ .card {
    padding: 0;
  }
  .cid-uMIfsTlIbZ .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMIfsTlIbZ .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uMIfsTlIbZ .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMIfsTlIbZ .row {
    margin: 0;
  }
}
.cid-uMIfsTlIbZ .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uMIfsTlIbZ .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uMIfsTlIbZ .mbr-section-title {
  font-weight: 800;
}
.cid-uMIfsTlIbZ h2 {
  margin-bottom: 0;
}
.cid-uMIfsTlIbZ .title-block {
  margin-bottom: 3rem;
}
.cid-uMIfsTlIbZ .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uN6TBBLLGV {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #000000;
}
.cid-uN6TBBLLGV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uN6TBBLLGV textarea {
  min-height: 150px;
}
.cid-uN6TBBLLGV input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uN6TBBLLGV textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uN6TBBLLGV .form-control,
.cid-uN6TBBLLGV .field-input {
  padding: 1rem 0rem;
  background-color: #000000;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-uN6TBBLLGV .form-control input::-webkit-input-placeholder,
.cid-uN6TBBLLGV .field-input input::-webkit-input-placeholder,
.cid-uN6TBBLLGV .form-control textarea::-webkit-input-placeholder,
.cid-uN6TBBLLGV .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6TBBLLGV .form-control input:-moz-placeholder,
.cid-uN6TBBLLGV .field-input input:-moz-placeholder,
.cid-uN6TBBLLGV .form-control textarea:-moz-placeholder,
.cid-uN6TBBLLGV .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uN6TBBLLGV .jq-number__spin:hover,
.cid-uN6TBBLLGV .jq-number__spin:focus {
  background-color: #f3f3f3;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uN6TBBLLGV .jq-number__spin {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uN6TBBLLGV .jq-selectbox li,
.cid-uN6TBBLLGV .jq-selectbox li {
  background-color: #000000;
  color: #ffffff;
}
.cid-uN6TBBLLGV .jq-selectbox li:hover,
.cid-uN6TBBLLGV .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-uN6TBBLLGV .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uN6TBBLLGV .jq-number__spin.minus:hover:after,
.cid-uN6TBBLLGV .jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.cid-uN6TBBLLGV .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uN6TBBLLGV .jq-number__spin.minus:after,
.cid-uN6TBBLLGV .jq-number__spin.plus:after {
  border-top-color: #f3f3f3;
  border-bottom-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-uN6TBBLLGV .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uN6TBBLLGV .social-list {
    margin-bottom: 3rem;
  }
  .cid-uN6TBBLLGV .email-input {
    margin-top: 2rem;
  }
}
.cid-uN6TBBLLGV .mbr-section-subtitle {
  color: #7e7e7e;
  margin-bottom: 2.4rem;
}
.cid-uN6TBBLLGV .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uN6TBBLLGV .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uN6TBBLLGV .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #000000;
  transition: all .3s;
}
.cid-uN6TBBLLGV .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-uN6TBBLLGV .social-list {
  display: flex;
}
.cid-uN6TBBLLGV .social-list a {
  transition: .3s;
}
.cid-uN6TBBLLGV .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uN6TBBLLGV .row {
  align-items: center;
}
.cid-uN6TBBLLGV .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uN6TBBLLGV .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uN6TBBLLGV .form-btn {
  margin-top: 2.5rem;
}
.cid-uN6TBBLLGV input::-webkit-input-placeholder,
.cid-uN6TBBLLGV textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6TBBLLGV input:-moz-placeholder,
.cid-uN6TBBLLGV textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uN6TBBLLGV .media-content {
    padding-right: 3rem;
  }
  .cid-uN6TBBLLGV .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uN6TBBLLGV .row {
    padding: 0 1rem;
  }
}
.cid-uN6TBBLLGV .btn:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uN6TBBLLGV .form-btn {
    width: 100%;
  }
  .cid-uN6TBBLLGV .btn {
    width: 100%;
  }
}
.cid-uJd9NNbd6P {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJd9NNbd6P .media-container-row {
  align-items: center;
}
.cid-uJd9NNbd6P .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJd9NNbd6P .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJd9NNbd6P .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJd9NNbd6P .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uJd9NNbd6P .foot-menu-item {
  transform: 0.2s;
}
.cid-uJd9NNbd6P .foot-menu-item:hover a {
  color: #000000 !important;
}
.cid-uJd9NNbd6P .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-uJd9NNbd6P .foot-menu-item:hover::before {
  width: 60px;
  background-color: #000000;
}
.cid-uJd9NNbd6P .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uJd9NNbd6P .foot-menu {
    justify-content: center;
  }
  .cid-uJd9NNbd6P .mbr-text {
    text-align: center;
  }
  .cid-uJd9NNbd6P .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uJd9NNbd6P .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uJd9NNbd6P .link:hover {
  color: #ffffff;
}
.cid-uJd9NNbd6P .media-container-row .mbr-text {
  color: #747474;
}
.cid-uJd9WRw78u .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-uJd9WRw78u .nav-item:focus,
.cid-uJd9WRw78u .nav-link:focus {
  outline: none;
}
.cid-uJd9WRw78u .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-uJd9WRw78u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJd9WRw78u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-uJd9WRw78u .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-uJd9WRw78u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJd9WRw78u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJd9WRw78u .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-uJd9WRw78u .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-uJd9WRw78u .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-uJd9WRw78u .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uJd9WRw78u .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJd9WRw78u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJd9WRw78u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJd9WRw78u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uJd9WRw78u .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uJd9WRw78u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJd9WRw78u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJd9WRw78u .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-uJd9WRw78u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJd9WRw78u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uJd9WRw78u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uJd9WRw78u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJd9WRw78u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJd9WRw78u .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uJd9WRw78u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJd9WRw78u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJd9WRw78u .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-uJd9WRw78u .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uJd9WRw78u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJd9WRw78u .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJd9WRw78u .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uJd9WRw78u .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uJd9WRw78u .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uJd9WRw78u .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-uJd9WRw78u .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uJd9WRw78u .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uJd9WRw78u .navbar-short {
  padding: 1rem 0 !important;
}
.cid-uJd9WRw78u .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-uJd9WRw78u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJd9WRw78u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJd9WRw78u .dropdown-item.active,
.cid-uJd9WRw78u .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uJd9WRw78u .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-uJd9WRw78u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJd9WRw78u .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-uJd9WRw78u .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-uJd9WRw78u .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJd9WRw78u .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-uJd9WRw78u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-uJd9WRw78u .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-uJd9WRw78u .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-uJd9WRw78u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uJd9WRw78u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJd9WRw78u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJd9WRw78u ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uJd9WRw78u .navbar-buttons {
  text-align: center;
}
.cid-uJd9WRw78u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJd9WRw78u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uJd9WRw78u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uJd9WRw78u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uJd9WRw78u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uJd9WRw78u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uJd9WRw78u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJd9WRw78u nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uJd9WRw78u nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uJd9WRw78u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJd9WRw78u .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-uJd9WRw78u 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-uJd9WRw78u .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-uJd9WRw78u .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-uJd9WRw78u .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJd9WRw78u .navbar {
    height: 77px;
  }
  .cid-uJd9WRw78u .navbar.opened {
    height: auto;
  }
  .cid-uJd9WRw78u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJd9WRw78u 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-uJd9WRw78u a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-uJd9WRw78u .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-uJd9WRw78u .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-uMryzWFCPW {
  padding-top: 240px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/cristian-baron-0-hb59n1m94-unsplash-2000x1125.jpg");
}
.cid-uMryzWFCPW .mbr-iconfont2 {
  color: #ffffff;
}
.cid-uMryzWFCPW .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-uMryzWFCPW .card-inner {
  background-color: #000000;
  transition: 0.7s;
  z-index: 10;
}
.cid-uMryzWFCPW .btn {
  margin-left: 0rem;
}
.cid-uMryzWFCPW .row {
  padding-bottom: 8rem;
}
.cid-uMryzWFCPW .link {
  margin: 0;
}
.cid-uMryzWFCPW .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMryzWFCPW .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  transition: 0.7s;
}
.cid-uMryzWFCPW .card-img {
  margin-bottom: 3.2rem;
}
.cid-uMryzWFCPW .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMryzWFCPW .card:hover .card-inner {
  background-color: #777777;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-uMryzWFCPW .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-uMryzWFCPW .card:hover .card-title:after {
  background: #ffffff;
}
.cid-uMryzWFCPW .media-container-row {
  align-items: flex-end;
}
.cid-uMryzWFCPW .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uMryzWFCPW .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-uMryzWFCPW .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMryzWFCPW .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uMryzWFCPW .card {
    margin-bottom: 2rem;
  }
  .cid-uMryzWFCPW .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMryzWFCPW .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uMryzWFCPW .card {
  position: relative;
}
.cid-uMryzWFCPW .card-3::after {
  content: '';
  background-color: #535353;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-uMryzWFCPW .card:first-child .card-inner {
  background-color: #000000;
}
.cid-uMryzWFCPW .card:first-child .card-inner .mbr-iconfont1 {
  color: #ffffff;
}
.cid-uMryzWFCPW .card:first-child .card-inner .card-title:after {
  background: #ffffff;
}
.cid-uMryzWFCPW .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #7e7e7e !important;
}
.cid-uMryzWFCPW .card:first-child .card-inner:hover .card-title:after {
  background: #7e7e7e;
}
.cid-uMryzWFCPW .card:first-child .card-inner:hover {
  background-color: #535353;
}
.cid-uMryzWFCPW .line-title {
  width: 40px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-uMryzWFCPW .line-title-big {
  width: 72px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 2rem;
  display: inline-block;
}
.cid-uMryzWFCPW .card-title,
.cid-uMryzWFCPW .card-img {
  color: #ffffff;
}
.cid-uMryzWFCPW .mbr-text,
.cid-uMryzWFCPW .link {
  color: #ffffff;
}
.cid-uMrHzg7nSF.popup-builder {
  background-color: #ffffff;
}
.cid-uMrHzg7nSF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uMrHzg7nSF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uMrHzg7nSF .modal-content,
.cid-uMrHzg7nSF .modal-dialog {
  height: auto;
}
.cid-uMrHzg7nSF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uMrHzg7nSF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uMrHzg7nSF .form-wrapper .mbr-form .form-group,
  .cid-uMrHzg7nSF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uMrHzg7nSF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uMrHzg7nSF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMrHzg7nSF .mbr-text {
  text-align: center;
}
.cid-uMrHzg7nSF .pt-0 {
  padding-top: 0 !important;
}
.cid-uMrHzg7nSF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uMrHzg7nSF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uMrHzg7nSF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uMrHzg7nSF .modal-open {
  overflow: hidden;
}
.cid-uMrHzg7nSF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uMrHzg7nSF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uMrHzg7nSF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uMrHzg7nSF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uMrHzg7nSF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uMrHzg7nSF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uMrHzg7nSF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uMrHzg7nSF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uMrHzg7nSF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uMrHzg7nSF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uMrHzg7nSF .modal-backdrop.fade {
  opacity: 0;
}
.cid-uMrHzg7nSF .modal-backdrop.show {
  opacity: .5;
}
.cid-uMrHzg7nSF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uMrHzg7nSF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrHzg7nSF .modal-header {
    padding: 1rem;
  }
}
.cid-uMrHzg7nSF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uMrHzg7nSF .modal-header .close svg {
  fill: #353535;
}
.cid-uMrHzg7nSF .modal-header .close:hover {
  opacity: 1;
}
.cid-uMrHzg7nSF .modal-header .close:focus {
  outline: none;
}
.cid-uMrHzg7nSF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uMrHzg7nSF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uMrHzg7nSF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrHzg7nSF .modal-body {
    padding: 1rem;
  }
}
.cid-uMrHzg7nSF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uMrHzg7nSF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMrHzg7nSF .modal-footer {
    padding: 1rem;
  }
}
.cid-uMrHzg7nSF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uMrHzg7nSF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uMrHzg7nSF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uMrHzg7nSF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uMrHzg7nSF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uMrHzg7nSF .modal-lg,
  .cid-uMrHzg7nSF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uMrHzg7nSF .modal-xl {
    max-width: 1140px;
  }
}
.cid-uMrHzg7nSF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uMrHzg7nSF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uMrHzg7nSF .form-group {
  margin-bottom: 1rem;
}
.cid-uMrHzg7nSF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uMrHzg7nSF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uMrHzg7nSF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uMrHzg7nSF .mbr-section-btn {
  margin: 0;
}
.cid-uMrHzg7nSF .mbr-section-btn .btn {
  margin: 0;
}
.cid-uMryBBohLs {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uMryBBohLs {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.cid-uMryBBohLs .box {
  background-image: url("../../../assets/images/screenshot-2025-05-27-at-21-02-10-37.mp4-1920x1080.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMryBBohLs .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-uMryBBohLs .icon-wrap span {
  padding-left: 8px;
}
.cid-uMryBBohLs .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uMryBBohLs .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-uMryBBohLs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uMryBBohLs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uMryBBohLs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uMryBBohLs a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uMryBBohLs a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uMryBBohLs {
    padding-top: 42px;
    padding-bottom: 21px;
  }
  .cid-uMryBBohLs .box {
    height: 250px;
  }
}
@media (min-width: 767px) {
  .cid-uMryBBohLs .row {
    margin: 0;
  }
}
.cid-uMudu0PHXR {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uMudu0PHXR .mbr-text {
  color: #767676;
}
.cid-uMudu0PHXR .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMudu0PHXR .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMudu0PHXR h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMudu0PHXR .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMudu0PHXR .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMudu0PHXR .row {
    margin: 0;
  }
}
.cid-uMuduNxIkI {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uMuduNxIkI .mbr-text {
  color: #767676;
}
.cid-uMuduNxIkI .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uMuduNxIkI .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uMuduNxIkI h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uMuduNxIkI .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMuduNxIkI .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uMuduNxIkI .row {
    margin: 0;
  }
}
.cid-uMryCmgwrV {
  background-color: #ffffff;
}
.cid-uMryCmgwrV .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMryCmgwrV .carousel-item > div {
  width: 100%;
}
.cid-uMryCmgwrV h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-uMryCmgwrV .carousel-item.active,
.cid-uMryCmgwrV .carousel-item-next,
.cid-uMryCmgwrV .carousel-item-prev {
  display: flex;
}
.cid-uMryCmgwrV .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-uMryCmgwrV .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-uMryCmgwrV .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-uMryCmgwrV .carousel-controls a {
    width: 5%;
  }
}
.cid-uMryCmgwrV .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uMryCmgwrV .img-block {
  display: flex;
  flex-direction: column;
}
.cid-uMryCmgwrV img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uMryCmgwrV .mbr-text {
  position: relative;
}
.cid-uMryCmgwrV li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-uMryCmgwrV li.active {
  background-color: #000000;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-uMryCmgwrV .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-uMryCmgwrV ol {
  margin-bottom: 0;
}
.cid-uMryCmgwrV .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-uMryCmgwrV .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-uMryCmgwrV {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}
@media (min-width: 767px) {
  .cid-uMryCmgwrV {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .cid-uMryCmgwrV .row {
    margin: 0;
  }
}
.cid-uMryCmgwrV .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMryCmgwrV .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-uMryCmgwrV .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-uMryCmgwrV .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-uMryCmgwrV .img-block:hover .desk {
  color: #101010;
}
.cid-uMryCmgwrV .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uMryCmgwrV .img-card {
    margin-top: 2rem;
  }
}
.cid-uMryCmgwrV .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-uJvoGuYb3Y {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uJvoGuYb3Y .mbr-text {
  color: #767676;
}
.cid-uJvoGuYb3Y .icon-1 {
  color: #ffffff;
  font-size: 3.5rem;
}
.cid-uJvoGuYb3Y .icon-arrow {
  color: #7e7e7e;
  font-size: 1.8rem !important;
}
.cid-uJvoGuYb3Y .link {
  margin: 0;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
  color: #777777;
}
@media (min-width: 767px) {
  .cid-uJvoGuYb3Y .card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .cid-uJvoGuYb3Y .row {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uJvoGuYb3Y .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-uJvoGuYb3Y .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uJvoGuYb3Y .card {
    margin-bottom: 2rem;
  }
}
.cid-uJvoGuYb3Y .text-link {
  font-weight: 800 !important;
}
.cid-uJvoGuYb3Y .card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.cid-uJvoGuYb3Y .card-img {
  opacity: 0;
  left: -40px;
  top: 20%;
  position: absolute;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJvoGuYb3Y .card-icon {
  display: flex;
  transition: 400ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJvoGuYb3Y .card:hover .card-inner {
  background-color: #000000;
}
.cid-uJvoGuYb3Y .card:hover .icon-arrow {
  color: #fff;
}
.cid-uJvoGuYb3Y .card:hover .text-link {
  color: #fff !important;
}
.cid-uJvoGuYb3Y .card:hover .card-img {
  opacity: 1;
  left: -10px;
}
.cid-uJvoGuYb3Y .card:hover .link {
  transform: translateX(42px);
}
.cid-uJvoGuYb3Y .card:hover .card-icon {
  transform: translateX(10px);
}
.cid-uJvoGuYb3Y h5 {
  color: #101010;
  font-weight: 800;
}
.cid-uJtT7W1LXG {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJtT7W1LXG .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uJtT7W1LXG .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uJtT7W1LXG .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uJtT7W1LXG .link {
  margin: 0;
}
.cid-uJtT7W1LXG .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uJtT7W1LXG .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtT7W1LXG .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtT7W1LXG .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uJtT7W1LXG .card:hover {
  background-color: #000000;
}
.cid-uJtT7W1LXG .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJtT7W1LXG .card:hover .card-title {
  color: #ffffff;
}
.cid-uJtT7W1LXG .card:hover .card-title:after {
  background: #fff;
}
.cid-uJtT7W1LXG .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uJtT7W1LXG .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uJtT7W1LXG .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uJtT7W1LXG .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uJtT7W1LXG .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uJtT7W1LXG .card {
    padding: 0;
  }
  .cid-uJtT7W1LXG .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uJtT7W1LXG .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uJtT7W1LXG .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uJtT7W1LXG .row {
    margin: 0;
  }
}
.cid-uJtT7W1LXG .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uJtT7W1LXG .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uJtT7W1LXG .mbr-section-title {
  font-weight: 800;
}
.cid-uJtT7W1LXG h2 {
  margin-bottom: 0;
}
.cid-uJtT7W1LXG .title-block {
  margin-bottom: 3rem;
}
.cid-uJtT7W1LXG .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uJtT7W1LXG H2 {
  color: #000000;
}
.cid-uMIfxpniy7 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMIfxpniy7 .mbr-iconfont-1 {
  color: #000000;
  font-size: 3.5rem;
  transition: 0.7s;
}
.cid-uMIfxpniy7 .mbr-iconfont-2 {
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: 0.7s;
}
.cid-uMIfxpniy7 .card-inner {
  transition: 0.7s;
  z-index: 10;
}
.cid-uMIfxpniy7 .link {
  margin: 0;
}
.cid-uMIfxpniy7 .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-uMIfxpniy7 .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIfxpniy7 .card-img {
  margin-bottom: 3.2rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uMIfxpniy7 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uMIfxpniy7 .card:hover {
  background-color: #000000;
}
.cid-uMIfxpniy7 .card:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMIfxpniy7 .card:hover .card-title {
  color: #ffffff;
}
.cid-uMIfxpniy7 .card:hover .card-title:after {
  background: #fff;
}
.cid-uMIfxpniy7 .card:hover .mbr-text {
  color: #ffffff;
}
.cid-uMIfxpniy7 .card:hover .mbr-iconfont-2 {
  opacity: 1;
}
.cid-uMIfxpniy7 .card:hover .card-box {
  transform: translateY(-25px);
}
.cid-uMIfxpniy7 .card:hover .card-img {
  transform: translateY(-5px);
}
.cid-uMIfxpniy7 .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-uMIfxpniy7 .card {
    padding: 0;
  }
  .cid-uMIfxpniy7 .card-inner {
    padding: 2.4rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uMIfxpniy7 .card-inner {
    padding: 3.4rem 2.5rem;
  }
  .cid-uMIfxpniy7 .media-container-row {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uMIfxpniy7 .row {
    margin: 0;
  }
}
.cid-uMIfxpniy7 .card {
  background-color: #ffffff;
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
}
.cid-uMIfxpniy7 .mbr-section-subtitle {
  color: #b539cf;
}
.cid-uMIfxpniy7 .mbr-section-title {
  font-weight: 800;
}
.cid-uMIfxpniy7 h2 {
  margin-bottom: 0;
}
.cid-uMIfxpniy7 .title-block {
  margin-bottom: 3rem;
}
.cid-uMIfxpniy7 .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uN6TG1YJxw {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #000000;
}
.cid-uN6TG1YJxw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uN6TG1YJxw textarea {
  min-height: 150px;
}
.cid-uN6TG1YJxw input[name="yourSubject"] {
  margin-top: 1.5rem;
}
.cid-uN6TG1YJxw textarea[name="yourMessage"] {
  margin-top: 0.3rem;
}
.cid-uN6TG1YJxw .form-control,
.cid-uN6TG1YJxw .field-input {
  padding: 1rem 0rem;
  background-color: #000000;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-uN6TG1YJxw .form-control input::-webkit-input-placeholder,
.cid-uN6TG1YJxw .field-input input::-webkit-input-placeholder,
.cid-uN6TG1YJxw .form-control textarea::-webkit-input-placeholder,
.cid-uN6TG1YJxw .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6TG1YJxw .form-control input:-moz-placeholder,
.cid-uN6TG1YJxw .field-input input:-moz-placeholder,
.cid-uN6TG1YJxw .form-control textarea:-moz-placeholder,
.cid-uN6TG1YJxw .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-uN6TG1YJxw .jq-number__spin:hover,
.cid-uN6TG1YJxw .jq-number__spin:focus {
  background-color: #f3f3f3;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uN6TG1YJxw .jq-number__spin {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uN6TG1YJxw .jq-selectbox li,
.cid-uN6TG1YJxw .jq-selectbox li {
  background-color: #000000;
  color: #ffffff;
}
.cid-uN6TG1YJxw .jq-selectbox li:hover,
.cid-uN6TG1YJxw .jq-selectbox li.selected {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-uN6TG1YJxw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uN6TG1YJxw .jq-number__spin.minus:hover:after,
.cid-uN6TG1YJxw .jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.cid-uN6TG1YJxw .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uN6TG1YJxw .jq-number__spin.minus:after,
.cid-uN6TG1YJxw .jq-number__spin.plus:after {
  border-top-color: #f3f3f3;
  border-bottom-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-uN6TG1YJxw .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-uN6TG1YJxw .social-list {
    margin-bottom: 3rem;
  }
  .cid-uN6TG1YJxw .email-input {
    margin-top: 2rem;
  }
}
.cid-uN6TG1YJxw .mbr-section-subtitle {
  color: #7e7e7e;
  margin-bottom: 2.4rem;
}
.cid-uN6TG1YJxw .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-uN6TG1YJxw .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: .6rem;
}
.cid-uN6TG1YJxw .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #000000;
  transition: all .3s;
}
.cid-uN6TG1YJxw .mbr-iconfont-social:hover {
  color: #000000;
}
.cid-uN6TG1YJxw .social-list {
  display: flex;
}
.cid-uN6TG1YJxw .social-list a {
  transition: .3s;
}
.cid-uN6TG1YJxw .social-list a:hover {
  transform: translateY(-8px);
}
.cid-uN6TG1YJxw .row {
  align-items: center;
}
.cid-uN6TG1YJxw .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-uN6TG1YJxw .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-uN6TG1YJxw .form-btn {
  margin-top: 2.5rem;
}
.cid-uN6TG1YJxw input::-webkit-input-placeholder,
.cid-uN6TG1YJxw textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-uN6TG1YJxw input:-moz-placeholder,
.cid-uN6TG1YJxw textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-uN6TG1YJxw .media-content {
    padding-right: 3rem;
  }
  .cid-uN6TG1YJxw .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-uN6TG1YJxw .row {
    padding: 0 1rem;
  }
}
.cid-uN6TG1YJxw .btn:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uN6TG1YJxw .form-btn {
    width: 100%;
  }
  .cid-uN6TG1YJxw .btn {
    width: 100%;
  }
}
.cid-uJd9WV8d4l {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uJd9WV8d4l .media-container-row {
  align-items: center;
}
.cid-uJd9WV8d4l .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uJd9WV8d4l .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uJd9WV8d4l .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uJd9WV8d4l .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uJd9WV8d4l .foot-menu-item {
  transform: 0.2s;
}
.cid-uJd9WV8d4l .foot-menu-item:hover a {
  color: #000000 !important;
}
.cid-uJd9WV8d4l .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-uJd9WV8d4l .foot-menu-item:hover::before {
  width: 60px;
  background-color: #000000;
}
.cid-uJd9WV8d4l .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-uJd9WV8d4l .foot-menu {
    justify-content: center;
  }
  .cid-uJd9WV8d4l .mbr-text {
    text-align: center;
  }
  .cid-uJd9WV8d4l .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uJd9WV8d4l .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uJd9WV8d4l .link:hover {
  color: #ffffff;
}
.cid-uJd9WV8d4l .media-container-row .mbr-text {
  color: #747474;
}
