.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Rethink Sans;
}
.display-1 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.17;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.55;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.286;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #060606 !important;
}
.bg-success {
  background-color: #2e96ff !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #dcb300 !important;
}
.bg-danger {
  background-color: #dc5400 !important;
}
.btn-primary {
  background: linear-gradient(90deg, #060606, #060606 65%, #393939) !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #060606 !important;
  border-color: #060606 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #202020 !important;
  border-color: #202020 !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #202020 !important;
  border-color: #202020 !important;
}
.btn-secondary {
  background: linear-gradient(90deg, #0844ff, #0844ff 65%, #6e91ff) !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0844ff !important;
  border-color: #0844ff !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #3b6bff !important;
  border-color: #3b6bff !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b6bff !important;
  border-color: #3b6bff !important;
}
.btn-info {
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff) !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success {
  background: linear-gradient(90deg, #2e96ff, #2e96ff 65%, #94c9ff) !important;
}
.btn-success,
.btn-success:active {
  background-color: #2e96ff !important;
  border-color: #2e96ff !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #61b0ff !important;
  border-color: #61b0ff !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #61b0ff !important;
  border-color: #61b0ff !important;
}
.btn-warning {
  background: linear-gradient(90deg, #dcb300, #dcb300 65%, #ffdc43) !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #dcb300 !important;
  border-color: #dcb300 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffd210 !important;
  border-color: #ffd210 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffd210 !important;
  border-color: #ffd210 !important;
}
.btn-danger {
  background: linear-gradient(90deg, #dc5400, #dc5400 65%, #ff8b43) !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #dc5400 !important;
  border-color: #dc5400 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ff6b10 !important;
  border-color: #ff6b10 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff6b10 !important;
  border-color: #ff6b10 !important;
}
.btn-white {
  background: linear-gradient(90deg, #ffffff, #ffffff 65%, #ffffff) !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black {
  background: linear-gradient(90deg, #232323, #232323 65%, #565656) !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #060606;
  color: #060606;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #060606 !important;
  border-color: #060606 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #0844ff;
  color: #0844ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #002bb0 !important;
  background-color: transparent !important;
  border-color: #002bb0 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0844ff !important;
  border-color: #0844ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2e96ff;
  color: #2e96ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #006bd6 !important;
  background-color: transparent !important;
  border-color: #006bd6 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2e96ff !important;
  border-color: #2e96ff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #dcb300;
  color: #dcb300;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #856c00 !important;
  background-color: transparent !important;
  border-color: #856c00 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #dcb300 !important;
  border-color: #dcb300 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #dc5400;
  color: #dc5400;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #853300 !important;
  background-color: transparent !important;
  border-color: #853300 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #dc5400 !important;
  border-color: #dc5400 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #060606 !important;
}
.text-secondary {
  color: #0844ff !important;
}
.text-success {
  color: #2e96ff !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #dcb300 !important;
}
.text-danger {
  color: #dc5400 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0027a1 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0063c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #766000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #762d00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #060606;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #dcb300;
}
.alert-danger {
  background-color: #dc5400;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #060606;
  border-color: #060606;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #060606;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b9b9b9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fafcff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffefa9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcaa9;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.286;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #060606 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rethink Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.286;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #060606;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #060606;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #060606;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #060606;
  border-bottom-color: #060606;
}
.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: #060606 !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: #0844ff !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='%23060606' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 8px 16px;
  border-radius: 50px !important;
  font-weight: 400 !important;
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 85%;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  transform: scale(1.04);
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont,
.mbr-section-btn-main .btn:focus .mbr-iconfont {
  transform: translateX(2px);
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  border: none !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border-width: 1px !important;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.slide-content,
.item-wrap,
.mbr-figure {
  border-radius: 24px !important;
}
.icon-wrap {
  border-radius: 16px;
}
.item-number img {
  border-radius: 16px !important;
}
.item-number {
  border-radius: 16px;
}
.form-control {
  border-radius: 8px !important;
}
.nav.nav-tabs .nav-item .nav-link {
  border-radius: 8px !important;
}
.nav.nav-tabs .nav-item {
  border-radius: 8px !important;
}
.cid-vedCBZVuvO {
  background-color: transparent;
}
.cid-vedCBZVuvO .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedCBZVuvO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedCBZVuvO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedCBZVuvO .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedCBZVuvO .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedCBZVuvO .menu_box .navbar.opened,
  .cid-vedCBZVuvO .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedCBZVuvO .navbar-dropdown {
  position: relative !important;
}
.cid-vedCBZVuvO .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedCBZVuvO .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedCBZVuvO .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedCBZVuvO .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedCBZVuvO .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedCBZVuvO .btn:hover {
  box-shadow: none;
}
.cid-vedCBZVuvO .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedCBZVuvO .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedCBZVuvO .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedCBZVuvO .nav-item {
    margin: 0 !important;
  }
}
.cid-vedCBZVuvO .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedCBZVuvO .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedCBZVuvO .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedCBZVuvO .nav-item .nav-link:hover,
.cid-vedCBZVuvO .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedCBZVuvO .nav-item .nav-link:hover::before,
.cid-vedCBZVuvO .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedCBZVuvO .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedCBZVuvO .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedCBZVuvO .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedCBZVuvO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedCBZVuvO .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedCBZVuvO .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedCBZVuvO .offcanvas_box {
    display: none;
  }
}
.cid-vedCBZVuvO .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedCBZVuvO .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedCBZVuvO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedCBZVuvO .container {
  display: flex;
  margin: auto;
}
.cid-vedCBZVuvO .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedCBZVuvO .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedCBZVuvO .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedCBZVuvO .navbar-nav {
    margin: 0;
  }
}
.cid-vedCBZVuvO .dropdown-menu,
.cid-vedCBZVuvO .navbar.opened {
  background-color: false !important;
}
.cid-vedCBZVuvO .nav-item:focus,
.cid-vedCBZVuvO .nav-link:focus {
  outline: none;
}
.cid-vedCBZVuvO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedCBZVuvO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedCBZVuvO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedCBZVuvO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedCBZVuvO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedCBZVuvO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedCBZVuvO .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedCBZVuvO .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedCBZVuvO .navbar.opened {
  transition: all 0.3s;
}
.cid-vedCBZVuvO .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedCBZVuvO .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedCBZVuvO .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedCBZVuvO .navbar.collapsed {
  justify-content: center;
}
.cid-vedCBZVuvO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedCBZVuvO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedCBZVuvO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedCBZVuvO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedCBZVuvO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedCBZVuvO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedCBZVuvO .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedCBZVuvO .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedCBZVuvO .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedCBZVuvO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedCBZVuvO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedCBZVuvO .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedCBZVuvO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedCBZVuvO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedCBZVuvO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedCBZVuvO .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedCBZVuvO .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedCBZVuvO .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedCBZVuvO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedCBZVuvO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedCBZVuvO .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedCBZVuvO .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedCBZVuvO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedCBZVuvO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedCBZVuvO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedCBZVuvO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedCBZVuvO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedCBZVuvO .dropdown-item.active,
.cid-vedCBZVuvO .dropdown-item:active {
  background-color: transparent;
}
.cid-vedCBZVuvO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedCBZVuvO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedCBZVuvO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedCBZVuvO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedCBZVuvO ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedCBZVuvO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedCBZVuvO button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedCBZVuvO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedCBZVuvO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedCBZVuvO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedCBZVuvO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedCBZVuvO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedCBZVuvO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedCBZVuvO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedCBZVuvO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedCBZVuvO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedCBZVuvO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedCBZVuvO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedCBZVuvO .navbar {
    height: 70px;
  }
  .cid-vedCBZVuvO .navbar.opened {
    height: auto;
  }
  .cid-vedCBZVuvO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedCBZVuvO .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedCBZVuvO .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedCBZVuvO .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedCBZVuvO .text_widget {
  margin-bottom: 32px;
}
.cid-vedCBZVuvO .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedCBZVuvO .text_widget a:hover,
.cid-vedCBZVuvO .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedCBZVuvO .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedCBZVuvO .navbar-caption {
  color: #ffffff;
}
.cid-vedCBZVuvO .mbr-section-subtitle,
.cid-vedCBZVuvO .text_widget,
.cid-vedCBZVuvO .mbr-section-btn {
  text-align: center;
}
.cid-vedCBZVuvO a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedCCfcFEH {
  background-image: url("../../../assets/images/hd-c18ae26c49d550102e7e6e116b7bb18a-2000x1125.jpg");
}
.cid-vedCCfcFEH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedCCfcFEH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedCCfcFEH .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-vedCCfcFEH .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-vedCCfcFEH .content-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-vedCCfcFEH .content-wrapper .text-wrapper {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-vedCCfcFEH .content-wrapper .text-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vedCCfcFEH .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
  background: linear-gradient(90deg, #3b6bff, #6e92ff 65%, #a1b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vedCCfcFEH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vedCCfcFEH .mbr-section-title {
  color: #ffffff;
}
.cid-vedCCfcFEH .mbr-desc,
.cid-vedCCfcFEH .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-vedCCfcFEH .mbr-text,
.cid-vedCCfcFEH .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedCCfcFEH .mbr-section-title,
.cid-vedCCfcFEH .mbr-section-btn {
  text-align: center;
}
.cid-vedCCfcFEH .mbr-desc,
.cid-vedCCfcFEH .desc-wrapper {
  color: #f7f7f7;
}
.cid-vedCCTt2yY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedCCTt2yY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedCCTt2yY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedCCTt2yY .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vedCCTt2yY .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vedCCTt2yY .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vedCCTt2yY .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vedCCTt2yY .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vedCCTt2yY .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vedCCTt2yY .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vedCCTt2yY .image-wrapper img {
    height: 350px;
  }
}
.cid-vedCCTt2yY .mbr-section-title {
  color: #ffffff;
}
.cid-vedCCTt2yY .mbr-text,
.cid-vedCCTt2yY .text-wrapper {
  color: #9aa0a6;
}
.cid-vedD1SAkUg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedD1SAkUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedD1SAkUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedD1SAkUg .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vedD1SAkUg .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-vedD1SAkUg .items-wrapper {
  margin: 0 -8px;
}
.cid-vedD1SAkUg .items-wrapper .item {
  padding: 0 8px;
}
.cid-vedD1SAkUg .item {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-vedD1SAkUg .item {
    margin-bottom: 12px;
  }
}
.cid-vedD1SAkUg .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #121212;
  overflow: hidden;
}
.cid-vedD1SAkUg .item .item-wrapper .card-box .item-img img {
  height: 480px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-vedD1SAkUg .item .item-wrapper .card-box .item-img img {
    height: 300px;
  }
}
.cid-vedD1SAkUg .item .item-wrapper .card-box .item-content {
  padding: 48px;
}
@media (max-width: 1440px) {
  .cid-vedD1SAkUg .item .item-wrapper .card-box .item-content {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vedD1SAkUg .item .item-wrapper .card-box .item-content {
    padding: 24px;
  }
}
.cid-vedD1SAkUg .item .item-wrapper .card-box .item-content .card-title {
  margin-bottom: 24px;
}
.cid-vedD1SAkUg .item .item-wrapper .card-box .item-content .card-text {
  margin-bottom: 0;
}
.cid-vedD1SAkUg .item .item-wrapper .mbr-section-btn {
  padding: 0 48px 48px;
}
@media (max-width: 1440px) {
  .cid-vedD1SAkUg .item .item-wrapper .mbr-section-btn {
    padding: 0 32px 32px;
  }
}
@media (max-width: 992px) {
  .cid-vedD1SAkUg .item .item-wrapper .mbr-section-btn {
    padding: 0 24px 24px;
  }
}
.cid-vedD1SAkUg .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vedD1SAkUg .mbr-section-title {
  color: #ffffff;
}
.cid-vedD1SAkUg .card-title {
  color: #ffffff;
}
.cid-vedD1SAkUg .card-text {
  color: #9aa0a6;
}
.cid-vedCJ13iKx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedCJ13iKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedCJ13iKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedCJ13iKx .row {
  margin: 0 -8px;
}
.cid-vedCJ13iKx .row .card {
  padding: 0 8px;
}
.cid-vedCJ13iKx .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #121212;
}
@media (max-width: 1440px) {
  .cid-vedCJ13iKx .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vedCJ13iKx .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-vedCJ13iKx .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vedCJ13iKx .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-vedCJ13iKx .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vedCJ13iKx .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vedCJ13iKx .image-wrapper {
  height: 100%;
}
.cid-vedCJ13iKx .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vedCJ13iKx .image-wrapper img {
    height: 300px;
  }
}
.cid-vedCJ13iKx .mbr-section-title {
  color: #2c2c26;
}
.cid-vedCJ13iKx .mbr-text,
.cid-vedCJ13iKx .text-wrapper {
  color: #9aa0a6;
}
.cid-vedCJ13iKx .mbr-section-title,
.cid-vedCJ13iKx .mbr-section-btn {
  color: #ffffff;
}
.cid-vedCL2MJ69 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedCL2MJ69 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedCL2MJ69 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedCL2MJ69 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vedCL2MJ69 .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vedCL2MJ69 .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vedCL2MJ69 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vedCL2MJ69 .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vedCL2MJ69 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vedCL2MJ69 .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vedCL2MJ69 .image-wrapper img {
    height: 350px;
  }
}
.cid-vedCL2MJ69 .mbr-section-title {
  color: #ffffff;
}
.cid-vedCL2MJ69 .mbr-text,
.cid-vedCL2MJ69 .text-wrapper {
  color: #9aa0a6;
}
.cid-vedCJqBmbd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedCJqBmbd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedCJqBmbd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedCJqBmbd .row {
  margin: 0 -8px;
}
.cid-vedCJqBmbd .row .card {
  padding: 0 8px;
}
.cid-vedCJqBmbd .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #121212;
}
@media (max-width: 1440px) {
  .cid-vedCJqBmbd .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vedCJqBmbd .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-vedCJqBmbd .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vedCJqBmbd .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-vedCJqBmbd .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-vedCJqBmbd .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vedCJqBmbd .image-wrapper {
  height: 100%;
}
.cid-vedCJqBmbd .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vedCJqBmbd .image-wrapper img {
    height: 300px;
  }
}
.cid-vedCJqBmbd .mbr-section-title {
  color: #2c2c26;
}
.cid-vedCJqBmbd .mbr-text,
.cid-vedCJqBmbd .text-wrapper {
  color: #9aa0a6;
}
.cid-vedCJqBmbd .mbr-section-title,
.cid-vedCJqBmbd .mbr-section-btn {
  color: #ffffff;
}
.cid-vedD5rvUAv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedD5rvUAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedD5rvUAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedD5rvUAv .content-wrapper {
  position: relative;
  padding: 130px 0;
  display: flex;
  justify-content: center;
  border-radius: 1000px;
  border: 1px solid #252525;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vedD5rvUAv .content-wrapper {
    padding: 16px;
    border-radius: 24px;
  }
}
.cid-vedD5rvUAv .content-wrapper .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-vedD5rvUAv .content-wrapper .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cid-vedD5rvUAv .content-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vedD5rvUAv .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 32px;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 12px !important;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 8px;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  border: 1px solid #ffffff !important;
  box-shadow: none;
  background-color: transparent;
  line-height: 1 !important;
  color: #ffffff;
  font-size: 18px;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #078efb !important;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #ffffff;
  font-size: 18px;
  opacity: .6;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.6em;
  margin-bottom: 16px;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ffffff;
  border-color: #ffffff;
}
.cid-vedD5rvUAv .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-vedD5rvUAv .mbr-section-title {
  color: #ffffff;
}
.cid-vedD5rvUAv .mbr-text,
.cid-vedD5rvUAv .text-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-vedD5rvUAv .mbr-section-title,
.cid-vedD5rvUAv .mbr-section-btn {
  text-align: center;
}
.cid-vedD5rvUAv .form-control {
  color: #ffffff !important;
}
.cid-vedD5KRW3K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedD5KRW3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedD5KRW3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedD5KRW3K .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedD5KRW3K .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedD5KRW3K .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedD5KRW3K .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedD5KRW3K .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedD5KRW3K .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedD5KRW3K .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedD5KRW3K .list-wrapper .list .item-wrap:hover,
.cid-vedD5KRW3K .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedD5KRW3K .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedD5KRW3K .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedD5KRW3K .social-wrapper {
    text-align: left;
  }
}
.cid-vedD5KRW3K .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedD5KRW3K .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedD5KRW3K .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedD5KRW3K .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedD5KRW3K .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedD5KRW3K .list {
  color: #9aa0a6;
}
.cid-vedD5KRW3K .list,
.cid-vedD5KRW3K .item-wrap,
.cid-vedD5KRW3K .social-wrapper {
  color: #ffffff;
}
.cid-vedD6zH4Ii {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedD6zH4Ii .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedD6zH4Ii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedD6zH4Ii .row {
  justify-content: center;
}
.cid-vedD6zH4Ii .card {
  justify-content: center;
}
.cid-vedD6zH4Ii .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedD6zH4Ii .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedD6zH4Ii .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedD6zH4Ii .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedD6zH4Ii .nav-wrapper .list .item-wrap:hover,
.cid-vedD6zH4Ii .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedD6zH4Ii .list,
.cid-vedD6zH4Ii .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedMVdKkwX {
  background-color: transparent;
}
.cid-vedMVdKkwX .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedMVdKkwX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedMVdKkwX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedMVdKkwX .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedMVdKkwX .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedMVdKkwX .menu_box .navbar.opened,
  .cid-vedMVdKkwX .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedMVdKkwX .navbar-dropdown {
  position: relative !important;
}
.cid-vedMVdKkwX .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedMVdKkwX .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedMVdKkwX .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedMVdKkwX .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedMVdKkwX .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedMVdKkwX .btn:hover {
  box-shadow: none;
}
.cid-vedMVdKkwX .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedMVdKkwX .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedMVdKkwX .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedMVdKkwX .nav-item {
    margin: 0 !important;
  }
}
.cid-vedMVdKkwX .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedMVdKkwX .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedMVdKkwX .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedMVdKkwX .nav-item .nav-link:hover,
.cid-vedMVdKkwX .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedMVdKkwX .nav-item .nav-link:hover::before,
.cid-vedMVdKkwX .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedMVdKkwX .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedMVdKkwX .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedMVdKkwX .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedMVdKkwX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedMVdKkwX .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedMVdKkwX .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedMVdKkwX .offcanvas_box {
    display: none;
  }
}
.cid-vedMVdKkwX .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedMVdKkwX .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedMVdKkwX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedMVdKkwX .container {
  display: flex;
  margin: auto;
}
.cid-vedMVdKkwX .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedMVdKkwX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedMVdKkwX .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedMVdKkwX .navbar-nav {
    margin: 0;
  }
}
.cid-vedMVdKkwX .dropdown-menu,
.cid-vedMVdKkwX .navbar.opened {
  background-color: false !important;
}
.cid-vedMVdKkwX .nav-item:focus,
.cid-vedMVdKkwX .nav-link:focus {
  outline: none;
}
.cid-vedMVdKkwX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedMVdKkwX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedMVdKkwX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedMVdKkwX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedMVdKkwX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedMVdKkwX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedMVdKkwX .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedMVdKkwX .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedMVdKkwX .navbar.opened {
  transition: all 0.3s;
}
.cid-vedMVdKkwX .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedMVdKkwX .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedMVdKkwX .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedMVdKkwX .navbar.collapsed {
  justify-content: center;
}
.cid-vedMVdKkwX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedMVdKkwX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedMVdKkwX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedMVdKkwX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedMVdKkwX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedMVdKkwX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedMVdKkwX .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedMVdKkwX .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedMVdKkwX .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedMVdKkwX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedMVdKkwX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedMVdKkwX .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedMVdKkwX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedMVdKkwX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedMVdKkwX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedMVdKkwX .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedMVdKkwX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedMVdKkwX .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedMVdKkwX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedMVdKkwX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedMVdKkwX .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedMVdKkwX .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedMVdKkwX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedMVdKkwX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedMVdKkwX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedMVdKkwX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedMVdKkwX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedMVdKkwX .dropdown-item.active,
.cid-vedMVdKkwX .dropdown-item:active {
  background-color: transparent;
}
.cid-vedMVdKkwX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedMVdKkwX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedMVdKkwX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedMVdKkwX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedMVdKkwX ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedMVdKkwX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedMVdKkwX button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedMVdKkwX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedMVdKkwX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedMVdKkwX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedMVdKkwX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedMVdKkwX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedMVdKkwX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedMVdKkwX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedMVdKkwX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedMVdKkwX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedMVdKkwX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedMVdKkwX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedMVdKkwX .navbar {
    height: 70px;
  }
  .cid-vedMVdKkwX .navbar.opened {
    height: auto;
  }
  .cid-vedMVdKkwX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedMVdKkwX .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedMVdKkwX .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedMVdKkwX .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedMVdKkwX .text_widget {
  margin-bottom: 32px;
}
.cid-vedMVdKkwX .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedMVdKkwX .text_widget a:hover,
.cid-vedMVdKkwX .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedMVdKkwX .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedMVdKkwX .navbar-caption {
  color: #ffffff;
}
.cid-vedMVdKkwX .mbr-section-subtitle,
.cid-vedMVdKkwX .text_widget,
.cid-vedMVdKkwX .mbr-section-btn {
  text-align: center;
}
.cid-vedMVdKkwX a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedMVeBrr1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedMVeBrr1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedMVeBrr1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedMVeBrr1 .row {
  justify-content: center;
}
.cid-vedMVeBrr1 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vedMVeBrr1 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-vedMVeBrr1 .container {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-vedMVeBrr1 .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vedMVeBrr1 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vedMVeBrr1 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vedMVeBrr1 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vedMVeBrr1 .content-wrapper .list {
  margin: 16px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedMVeBrr1 .content-wrapper .list .item-wrap {
  margin-bottom: 16px;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.cid-vedMVeBrr1 .content-wrapper .list .item-wrap:hover,
.cid-vedMVeBrr1 .content-wrapper .list .item-wrap:focus {
  color: #f2ac2b;
}
.cid-vedMVeBrr1 .image-wrapper img {
  height: 400px;
  object-fit: cover;
}
.cid-vedMVeBrr1 .mbr-section-title {
  color: #ffffff;
}
.cid-vedMVeBrr1 .mbr-text {
  color: #9aa0a6;
}
.cid-vedMVeBrr1 .list {
  color: #d2d2df;
}
.cid-vedMVktPbF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedMVktPbF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedMVktPbF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedMVktPbF .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedMVktPbF .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedMVktPbF .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedMVktPbF .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedMVktPbF .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedMVktPbF .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedMVktPbF .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedMVktPbF .list-wrapper .list .item-wrap:hover,
.cid-vedMVktPbF .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedMVktPbF .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedMVktPbF .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedMVktPbF .social-wrapper {
    text-align: left;
  }
}
.cid-vedMVktPbF .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedMVktPbF .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedMVktPbF .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedMVktPbF .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedMVktPbF .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedMVktPbF .list {
  color: #9aa0a6;
}
.cid-vedMVktPbF .list,
.cid-vedMVktPbF .item-wrap,
.cid-vedMVktPbF .social-wrapper {
  color: #ffffff;
}
.cid-vedMVl0aBU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedMVl0aBU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedMVl0aBU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedMVl0aBU .row {
  justify-content: center;
}
.cid-vedMVl0aBU .card {
  justify-content: center;
}
.cid-vedMVl0aBU .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedMVl0aBU .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedMVl0aBU .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedMVl0aBU .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedMVl0aBU .nav-wrapper .list .item-wrap:hover,
.cid-vedMVl0aBU .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedMVl0aBU .list,
.cid-vedMVl0aBU .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedMXV8yRR {
  background-color: transparent;
}
.cid-vedMXV8yRR .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedMXV8yRR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedMXV8yRR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedMXV8yRR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedMXV8yRR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedMXV8yRR .menu_box .navbar.opened,
  .cid-vedMXV8yRR .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedMXV8yRR .navbar-dropdown {
  position: relative !important;
}
.cid-vedMXV8yRR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedMXV8yRR .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedMXV8yRR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedMXV8yRR .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedMXV8yRR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedMXV8yRR .btn:hover {
  box-shadow: none;
}
.cid-vedMXV8yRR .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedMXV8yRR .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedMXV8yRR .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedMXV8yRR .nav-item {
    margin: 0 !important;
  }
}
.cid-vedMXV8yRR .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedMXV8yRR .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedMXV8yRR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedMXV8yRR .nav-item .nav-link:hover,
.cid-vedMXV8yRR .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedMXV8yRR .nav-item .nav-link:hover::before,
.cid-vedMXV8yRR .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedMXV8yRR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedMXV8yRR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedMXV8yRR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedMXV8yRR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedMXV8yRR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedMXV8yRR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedMXV8yRR .offcanvas_box {
    display: none;
  }
}
.cid-vedMXV8yRR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedMXV8yRR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedMXV8yRR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedMXV8yRR .container {
  display: flex;
  margin: auto;
}
.cid-vedMXV8yRR .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedMXV8yRR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedMXV8yRR .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedMXV8yRR .navbar-nav {
    margin: 0;
  }
}
.cid-vedMXV8yRR .dropdown-menu,
.cid-vedMXV8yRR .navbar.opened {
  background-color: false !important;
}
.cid-vedMXV8yRR .nav-item:focus,
.cid-vedMXV8yRR .nav-link:focus {
  outline: none;
}
.cid-vedMXV8yRR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedMXV8yRR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedMXV8yRR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedMXV8yRR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedMXV8yRR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedMXV8yRR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedMXV8yRR .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedMXV8yRR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedMXV8yRR .navbar.opened {
  transition: all 0.3s;
}
.cid-vedMXV8yRR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedMXV8yRR .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedMXV8yRR .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedMXV8yRR .navbar.collapsed {
  justify-content: center;
}
.cid-vedMXV8yRR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedMXV8yRR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedMXV8yRR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedMXV8yRR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedMXV8yRR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedMXV8yRR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedMXV8yRR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedMXV8yRR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedMXV8yRR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedMXV8yRR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedMXV8yRR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedMXV8yRR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedMXV8yRR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedMXV8yRR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedMXV8yRR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedMXV8yRR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedMXV8yRR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedMXV8yRR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedMXV8yRR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedMXV8yRR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedMXV8yRR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedMXV8yRR .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedMXV8yRR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedMXV8yRR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedMXV8yRR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedMXV8yRR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedMXV8yRR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedMXV8yRR .dropdown-item.active,
.cid-vedMXV8yRR .dropdown-item:active {
  background-color: transparent;
}
.cid-vedMXV8yRR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedMXV8yRR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedMXV8yRR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedMXV8yRR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedMXV8yRR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedMXV8yRR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedMXV8yRR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedMXV8yRR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedMXV8yRR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedMXV8yRR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedMXV8yRR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedMXV8yRR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedMXV8yRR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedMXV8yRR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedMXV8yRR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedMXV8yRR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedMXV8yRR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedMXV8yRR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedMXV8yRR .navbar {
    height: 70px;
  }
  .cid-vedMXV8yRR .navbar.opened {
    height: auto;
  }
  .cid-vedMXV8yRR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedMXV8yRR .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedMXV8yRR .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedMXV8yRR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedMXV8yRR .text_widget {
  margin-bottom: 32px;
}
.cid-vedMXV8yRR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedMXV8yRR .text_widget a:hover,
.cid-vedMXV8yRR .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedMXV8yRR .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedMXV8yRR .navbar-caption {
  color: #ffffff;
}
.cid-vedMXV8yRR .mbr-section-subtitle,
.cid-vedMXV8yRR .text_widget,
.cid-vedMXV8yRR .mbr-section-btn {
  text-align: center;
}
.cid-vedMXV8yRR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedMXW7mze {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedMXW7mze .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedMXW7mze .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedMXW7mze .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vedMXW7mze .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vedMXW7mze .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vedMXW7mze .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vedMXW7mze .image-wrapper img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .image-wrapper img {
    height: 350px;
  }
}
.cid-vedMXW7mze .mbr-section-title {
  color: #ffffff;
}
.cid-vedMXW7mze .mbr-text,
.cid-vedMXW7mze .text-wrapper {
  color: #9aa0a6;
}
.cid-vedMXW7mze .row {
  justify-content: center;
}
.cid-vedMXW7mze .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .container {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vedMXW7mze .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vedMXW7mze .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vedMXW7mze .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vedMXW7mze .content-wrapper .list {
  margin: 16px 0 0 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedMXW7mze .content-wrapper .list .item-wrap {
  margin-bottom: 16px;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.cid-vedMXW7mze .content-wrapper .list .item-wrap:hover,
.cid-vedMXW7mze .content-wrapper .list .item-wrap:focus {
  color: #f2ac2b;
}
.cid-vedMXW7mze .mbr-text {
  color: #9aa0a6;
}
.cid-vedMXW7mze .list {
  color: #d2d2df;
}
.cid-vedMY0rJbV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedMY0rJbV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedMY0rJbV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedMY0rJbV .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedMY0rJbV .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedMY0rJbV .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedMY0rJbV .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedMY0rJbV .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedMY0rJbV .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedMY0rJbV .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedMY0rJbV .list-wrapper .list .item-wrap:hover,
.cid-vedMY0rJbV .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedMY0rJbV .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedMY0rJbV .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedMY0rJbV .social-wrapper {
    text-align: left;
  }
}
.cid-vedMY0rJbV .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedMY0rJbV .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedMY0rJbV .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedMY0rJbV .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedMY0rJbV .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedMY0rJbV .list {
  color: #9aa0a6;
}
.cid-vedMY0rJbV .list,
.cid-vedMY0rJbV .item-wrap,
.cid-vedMY0rJbV .social-wrapper {
  color: #ffffff;
}
.cid-vedMY10p6q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedMY10p6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedMY10p6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedMY10p6q .row {
  justify-content: center;
}
.cid-vedMY10p6q .card {
  justify-content: center;
}
.cid-vedMY10p6q .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedMY10p6q .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedMY10p6q .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedMY10p6q .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedMY10p6q .nav-wrapper .list .item-wrap:hover,
.cid-vedMY10p6q .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedMY10p6q .list,
.cid-vedMY10p6q .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedN0rr9l0 {
  background-color: transparent;
}
.cid-vedN0rr9l0 .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedN0rr9l0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedN0rr9l0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedN0rr9l0 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedN0rr9l0 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedN0rr9l0 .menu_box .navbar.opened,
  .cid-vedN0rr9l0 .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedN0rr9l0 .navbar-dropdown {
  position: relative !important;
}
.cid-vedN0rr9l0 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedN0rr9l0 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedN0rr9l0 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedN0rr9l0 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedN0rr9l0 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedN0rr9l0 .btn:hover {
  box-shadow: none;
}
.cid-vedN0rr9l0 .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedN0rr9l0 .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedN0rr9l0 .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedN0rr9l0 .nav-item {
    margin: 0 !important;
  }
}
.cid-vedN0rr9l0 .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedN0rr9l0 .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedN0rr9l0 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedN0rr9l0 .nav-item .nav-link:hover,
.cid-vedN0rr9l0 .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedN0rr9l0 .nav-item .nav-link:hover::before,
.cid-vedN0rr9l0 .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedN0rr9l0 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedN0rr9l0 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedN0rr9l0 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedN0rr9l0 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedN0rr9l0 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedN0rr9l0 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedN0rr9l0 .offcanvas_box {
    display: none;
  }
}
.cid-vedN0rr9l0 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedN0rr9l0 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedN0rr9l0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedN0rr9l0 .container {
  display: flex;
  margin: auto;
}
.cid-vedN0rr9l0 .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedN0rr9l0 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedN0rr9l0 .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedN0rr9l0 .navbar-nav {
    margin: 0;
  }
}
.cid-vedN0rr9l0 .dropdown-menu,
.cid-vedN0rr9l0 .navbar.opened {
  background-color: false !important;
}
.cid-vedN0rr9l0 .nav-item:focus,
.cid-vedN0rr9l0 .nav-link:focus {
  outline: none;
}
.cid-vedN0rr9l0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedN0rr9l0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedN0rr9l0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedN0rr9l0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedN0rr9l0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedN0rr9l0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedN0rr9l0 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedN0rr9l0 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedN0rr9l0 .navbar.opened {
  transition: all 0.3s;
}
.cid-vedN0rr9l0 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedN0rr9l0 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedN0rr9l0 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedN0rr9l0 .navbar.collapsed {
  justify-content: center;
}
.cid-vedN0rr9l0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedN0rr9l0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedN0rr9l0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedN0rr9l0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedN0rr9l0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedN0rr9l0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedN0rr9l0 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedN0rr9l0 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedN0rr9l0 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedN0rr9l0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedN0rr9l0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedN0rr9l0 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedN0rr9l0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedN0rr9l0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedN0rr9l0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedN0rr9l0 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedN0rr9l0 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedN0rr9l0 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedN0rr9l0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedN0rr9l0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedN0rr9l0 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedN0rr9l0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedN0rr9l0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedN0rr9l0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedN0rr9l0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedN0rr9l0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedN0rr9l0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedN0rr9l0 .dropdown-item.active,
.cid-vedN0rr9l0 .dropdown-item:active {
  background-color: transparent;
}
.cid-vedN0rr9l0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedN0rr9l0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedN0rr9l0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedN0rr9l0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedN0rr9l0 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedN0rr9l0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedN0rr9l0 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedN0rr9l0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedN0rr9l0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedN0rr9l0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN0rr9l0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN0rr9l0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedN0rr9l0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN0rr9l0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedN0rr9l0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedN0rr9l0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN0rr9l0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedN0rr9l0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedN0rr9l0 .navbar {
    height: 70px;
  }
  .cid-vedN0rr9l0 .navbar.opened {
    height: auto;
  }
  .cid-vedN0rr9l0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedN0rr9l0 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedN0rr9l0 .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedN0rr9l0 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedN0rr9l0 .text_widget {
  margin-bottom: 32px;
}
.cid-vedN0rr9l0 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedN0rr9l0 .text_widget a:hover,
.cid-vedN0rr9l0 .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedN0rr9l0 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedN0rr9l0 .navbar-caption {
  color: #ffffff;
}
.cid-vedN0rr9l0 .mbr-section-subtitle,
.cid-vedN0rr9l0 .text_widget,
.cid-vedN0rr9l0 .mbr-section-btn {
  text-align: center;
}
.cid-vedN0rr9l0 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedN0t47if {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedN0t47if .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN0t47if .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN0t47if .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vedN0t47if .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-vedN0t47if .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1440px) {
  .cid-vedN0t47if .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-vedN0t47if .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vedN0t47if .item {
    margin-bottom: 20px;
  }
}
.cid-vedN0t47if .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-vedN0t47if .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vedN0t47if .item .item-wrapper .card-box .card-title_1,
.cid-vedN0t47if .item .item-wrapper .card-box .card-title_2,
.cid-vedN0t47if .item .item-wrapper .card-box .card-title_3 {
  margin-bottom: 20px;
}
.cid-vedN0t47if .item .item-wrapper .card-box .card-text_1,
.cid-vedN0t47if .item .item-wrapper .card-box .card-text_2,
.cid-vedN0t47if .item .item-wrapper .card-box .card-text_3 {
  margin-bottom: 0;
}
.cid-vedN0t47if .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-vedN0t47if .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vedN0t47if .item .item-wrapper .iconfont-wrapper {
  text-align: right;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-vedN0t47if .item .item-wrapper .iconfont-wrapper {
    margin-top: 20px;
  }
}
.cid-vedN0t47if .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 22px;
  color: #ffffff;
  background-color: #078efb;
}
.cid-vedN0t47if .item .card_1 {
  background-color: #121212;
}
.cid-vedN0t47if .item .card_2 {
  background-color: #d1e0be;
}
.cid-vedN0t47if .item .card_3 {
  background-color: #e6eddc;
}
.cid-vedN0t47if .btn-wrapper {
  margin-top: -6%;
}
.cid-vedN0t47if .mbr-section-title,
.cid-vedN0t47if .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedN0t47if .card-title_1 {
  color: #f1f5eb;
}
.cid-vedN0t47if .card-text_1 {
  color: #9aa0a6;
  text-align: center;
}
.cid-vedN0t47if .card-title_2 {
  color: #323432;
  text-align: center;
}
.cid-vedN0t47if .card-text_2 {
  color: #323432;
  text-align: center;
}
.cid-vedN0t47if .card-title_3 {
  color: #5c834f;
  text-align: center;
}
.cid-vedN0t47if .card-text_3 {
  color: #5c834f;
  text-align: center;
}
.cid-vedN0t47if .card-title_1,
.cid-vedN0t47if .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vedN0wJ6zj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedN0wJ6zj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN0wJ6zj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN0wJ6zj .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedN0wJ6zj .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedN0wJ6zj .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedN0wJ6zj .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedN0wJ6zj .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedN0wJ6zj .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedN0wJ6zj .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedN0wJ6zj .list-wrapper .list .item-wrap:hover,
.cid-vedN0wJ6zj .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedN0wJ6zj .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedN0wJ6zj .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedN0wJ6zj .social-wrapper {
    text-align: left;
  }
}
.cid-vedN0wJ6zj .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedN0wJ6zj .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedN0wJ6zj .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedN0wJ6zj .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedN0wJ6zj .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedN0wJ6zj .list {
  color: #9aa0a6;
}
.cid-vedN0wJ6zj .list,
.cid-vedN0wJ6zj .item-wrap,
.cid-vedN0wJ6zj .social-wrapper {
  color: #ffffff;
}
.cid-vedN0xfmhy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedN0xfmhy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN0xfmhy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN0xfmhy .row {
  justify-content: center;
}
.cid-vedN0xfmhy .card {
  justify-content: center;
}
.cid-vedN0xfmhy .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedN0xfmhy .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedN0xfmhy .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedN0xfmhy .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedN0xfmhy .nav-wrapper .list .item-wrap:hover,
.cid-vedN0xfmhy .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedN0xfmhy .list,
.cid-vedN0xfmhy .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedN4PITRU {
  background-color: transparent;
}
.cid-vedN4PITRU .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedN4PITRU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedN4PITRU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedN4PITRU .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedN4PITRU .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedN4PITRU .menu_box .navbar.opened,
  .cid-vedN4PITRU .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedN4PITRU .navbar-dropdown {
  position: relative !important;
}
.cid-vedN4PITRU .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedN4PITRU .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedN4PITRU .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedN4PITRU .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedN4PITRU .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedN4PITRU .btn:hover {
  box-shadow: none;
}
.cid-vedN4PITRU .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedN4PITRU .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedN4PITRU .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedN4PITRU .nav-item {
    margin: 0 !important;
  }
}
.cid-vedN4PITRU .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedN4PITRU .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedN4PITRU .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedN4PITRU .nav-item .nav-link:hover,
.cid-vedN4PITRU .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedN4PITRU .nav-item .nav-link:hover::before,
.cid-vedN4PITRU .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedN4PITRU .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedN4PITRU .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedN4PITRU .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedN4PITRU .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedN4PITRU .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedN4PITRU .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedN4PITRU .offcanvas_box {
    display: none;
  }
}
.cid-vedN4PITRU .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedN4PITRU .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedN4PITRU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedN4PITRU .container {
  display: flex;
  margin: auto;
}
.cid-vedN4PITRU .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedN4PITRU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedN4PITRU .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedN4PITRU .navbar-nav {
    margin: 0;
  }
}
.cid-vedN4PITRU .dropdown-menu,
.cid-vedN4PITRU .navbar.opened {
  background-color: false !important;
}
.cid-vedN4PITRU .nav-item:focus,
.cid-vedN4PITRU .nav-link:focus {
  outline: none;
}
.cid-vedN4PITRU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedN4PITRU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedN4PITRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedN4PITRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedN4PITRU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedN4PITRU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedN4PITRU .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedN4PITRU .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedN4PITRU .navbar.opened {
  transition: all 0.3s;
}
.cid-vedN4PITRU .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedN4PITRU .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedN4PITRU .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedN4PITRU .navbar.collapsed {
  justify-content: center;
}
.cid-vedN4PITRU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedN4PITRU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedN4PITRU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedN4PITRU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedN4PITRU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedN4PITRU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedN4PITRU .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedN4PITRU .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedN4PITRU .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedN4PITRU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedN4PITRU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedN4PITRU .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedN4PITRU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedN4PITRU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedN4PITRU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedN4PITRU .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedN4PITRU .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedN4PITRU .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedN4PITRU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedN4PITRU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedN4PITRU .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedN4PITRU .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedN4PITRU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedN4PITRU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedN4PITRU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedN4PITRU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedN4PITRU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedN4PITRU .dropdown-item.active,
.cid-vedN4PITRU .dropdown-item:active {
  background-color: transparent;
}
.cid-vedN4PITRU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedN4PITRU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedN4PITRU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedN4PITRU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedN4PITRU ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedN4PITRU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedN4PITRU button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedN4PITRU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedN4PITRU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedN4PITRU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN4PITRU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN4PITRU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedN4PITRU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN4PITRU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedN4PITRU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedN4PITRU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN4PITRU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedN4PITRU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedN4PITRU .navbar {
    height: 70px;
  }
  .cid-vedN4PITRU .navbar.opened {
    height: auto;
  }
  .cid-vedN4PITRU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedN4PITRU .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedN4PITRU .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedN4PITRU .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedN4PITRU .text_widget {
  margin-bottom: 32px;
}
.cid-vedN4PITRU .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedN4PITRU .text_widget a:hover,
.cid-vedN4PITRU .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedN4PITRU .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedN4PITRU .navbar-caption {
  color: #ffffff;
}
.cid-vedN4PITRU .mbr-section-subtitle,
.cid-vedN4PITRU .text_widget,
.cid-vedN4PITRU .mbr-section-btn {
  text-align: center;
}
.cid-vedN4PITRU a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedN4SdGuV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedN4SdGuV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN4SdGuV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN4SdGuV .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vedN4SdGuV .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-vedN4SdGuV .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 1440px) {
  .cid-vedN4SdGuV .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-vedN4SdGuV .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vedN4SdGuV .item {
    margin-bottom: 40px;
  }
}
.cid-vedN4SdGuV .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-vedN4SdGuV .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vedN4SdGuV .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vedN4SdGuV .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  background-color: #078efb;
}
.cid-vedN4SdGuV .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-vedN4SdGuV .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-vedN4SdGuV .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vedN4SdGuV .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vedN4SdGuV .mbr-section-title,
.cid-vedN4SdGuV .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedN4SdGuV .card-title {
  color: #323432;
}
.cid-vedN4SdGuV .card-text {
  color: #9aa0a6;
}
.cid-vedN4SdGuV .card-title,
.cid-vedN4SdGuV .mbr-section-btn,
.cid-vedN4SdGuV .iconfont-wrapper {
  color: #ffffff;
}
.cid-vedN4VcIZA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedN4VcIZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN4VcIZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN4VcIZA .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedN4VcIZA .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedN4VcIZA .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedN4VcIZA .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedN4VcIZA .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedN4VcIZA .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedN4VcIZA .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedN4VcIZA .list-wrapper .list .item-wrap:hover,
.cid-vedN4VcIZA .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedN4VcIZA .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedN4VcIZA .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedN4VcIZA .social-wrapper {
    text-align: left;
  }
}
.cid-vedN4VcIZA .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedN4VcIZA .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedN4VcIZA .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedN4VcIZA .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedN4VcIZA .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedN4VcIZA .list {
  color: #9aa0a6;
}
.cid-vedN4VcIZA .list,
.cid-vedN4VcIZA .item-wrap,
.cid-vedN4VcIZA .social-wrapper {
  color: #ffffff;
}
.cid-vedN4VKe83 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedN4VKe83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN4VKe83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN4VKe83 .row {
  justify-content: center;
}
.cid-vedN4VKe83 .card {
  justify-content: center;
}
.cid-vedN4VKe83 .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedN4VKe83 .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedN4VKe83 .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedN4VKe83 .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedN4VKe83 .nav-wrapper .list .item-wrap:hover,
.cid-vedN4VKe83 .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedN4VKe83 .list,
.cid-vedN4VKe83 .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedN7UFZ3r {
  background-color: transparent;
}
.cid-vedN7UFZ3r .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedN7UFZ3r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedN7UFZ3r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedN7UFZ3r .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedN7UFZ3r .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedN7UFZ3r .menu_box .navbar.opened,
  .cid-vedN7UFZ3r .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedN7UFZ3r .navbar-dropdown {
  position: relative !important;
}
.cid-vedN7UFZ3r .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedN7UFZ3r .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedN7UFZ3r .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedN7UFZ3r .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedN7UFZ3r .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedN7UFZ3r .btn:hover {
  box-shadow: none;
}
.cid-vedN7UFZ3r .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedN7UFZ3r .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedN7UFZ3r .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedN7UFZ3r .nav-item {
    margin: 0 !important;
  }
}
.cid-vedN7UFZ3r .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedN7UFZ3r .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedN7UFZ3r .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedN7UFZ3r .nav-item .nav-link:hover,
.cid-vedN7UFZ3r .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedN7UFZ3r .nav-item .nav-link:hover::before,
.cid-vedN7UFZ3r .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedN7UFZ3r .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedN7UFZ3r .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedN7UFZ3r .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedN7UFZ3r .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedN7UFZ3r .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedN7UFZ3r .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedN7UFZ3r .offcanvas_box {
    display: none;
  }
}
.cid-vedN7UFZ3r .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedN7UFZ3r .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedN7UFZ3r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedN7UFZ3r .container {
  display: flex;
  margin: auto;
}
.cid-vedN7UFZ3r .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedN7UFZ3r .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedN7UFZ3r .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedN7UFZ3r .navbar-nav {
    margin: 0;
  }
}
.cid-vedN7UFZ3r .dropdown-menu,
.cid-vedN7UFZ3r .navbar.opened {
  background-color: false !important;
}
.cid-vedN7UFZ3r .nav-item:focus,
.cid-vedN7UFZ3r .nav-link:focus {
  outline: none;
}
.cid-vedN7UFZ3r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedN7UFZ3r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedN7UFZ3r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedN7UFZ3r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedN7UFZ3r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedN7UFZ3r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedN7UFZ3r .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedN7UFZ3r .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedN7UFZ3r .navbar.opened {
  transition: all 0.3s;
}
.cid-vedN7UFZ3r .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedN7UFZ3r .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedN7UFZ3r .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedN7UFZ3r .navbar.collapsed {
  justify-content: center;
}
.cid-vedN7UFZ3r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedN7UFZ3r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedN7UFZ3r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedN7UFZ3r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedN7UFZ3r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedN7UFZ3r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedN7UFZ3r .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedN7UFZ3r .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedN7UFZ3r .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedN7UFZ3r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedN7UFZ3r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedN7UFZ3r .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedN7UFZ3r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedN7UFZ3r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedN7UFZ3r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedN7UFZ3r .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedN7UFZ3r .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedN7UFZ3r .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedN7UFZ3r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedN7UFZ3r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedN7UFZ3r .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedN7UFZ3r .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedN7UFZ3r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedN7UFZ3r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedN7UFZ3r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedN7UFZ3r .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedN7UFZ3r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedN7UFZ3r .dropdown-item.active,
.cid-vedN7UFZ3r .dropdown-item:active {
  background-color: transparent;
}
.cid-vedN7UFZ3r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedN7UFZ3r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedN7UFZ3r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedN7UFZ3r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedN7UFZ3r ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedN7UFZ3r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedN7UFZ3r button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedN7UFZ3r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedN7UFZ3r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedN7UFZ3r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN7UFZ3r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN7UFZ3r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedN7UFZ3r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN7UFZ3r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedN7UFZ3r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedN7UFZ3r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN7UFZ3r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedN7UFZ3r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedN7UFZ3r .navbar {
    height: 70px;
  }
  .cid-vedN7UFZ3r .navbar.opened {
    height: auto;
  }
  .cid-vedN7UFZ3r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedN7UFZ3r .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedN7UFZ3r .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedN7UFZ3r .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedN7UFZ3r .text_widget {
  margin-bottom: 32px;
}
.cid-vedN7UFZ3r .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedN7UFZ3r .text_widget a:hover,
.cid-vedN7UFZ3r .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedN7UFZ3r .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedN7UFZ3r .navbar-caption {
  color: #ffffff;
}
.cid-vedN7UFZ3r .mbr-section-subtitle,
.cid-vedN7UFZ3r .text_widget,
.cid-vedN7UFZ3r .mbr-section-btn {
  text-align: center;
}
.cid-vedN7UFZ3r a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedN7Yq00M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #060606;
}
.cid-vedN7Yq00M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN7Yq00M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN7Yq00M .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vedN7Yq00M .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-vedN7Yq00M .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1440px) {
  .cid-vedN7Yq00M .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-vedN7Yq00M .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-vedN7Yq00M .item {
    margin-bottom: 16px;
  }
}
.cid-vedN7Yq00M .item .item-wrapper {
  padding: 32px;
  background-color: #121212;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-vedN7Yq00M .item .item-wrapper {
    padding: 32px 20px;
  }
}
.cid-vedN7Yq00M .item .item-wrapper .image-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (max-width: 1440px) {
  .cid-vedN7Yq00M .item .item-wrapper .image-wrapper {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 1440px) {
  .cid-vedN7Yq00M .item .item-wrapper .image-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-vedN7Yq00M .item .item-wrapper .image-wrapper .item-img img {
  height: 86px;
  width: 86px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-vedN7Yq00M .item .item-wrapper .image-wrapper .rating-wrap {
  display: inline-flex;
  align-items: flex-end;
}
.cid-vedN7Yq00M .item .item-wrapper .image-wrapper .rating-wrap .item-number {
  margin-bottom: 0;
}
.cid-vedN7Yq00M .item .item-wrapper .image-wrapper .rating-wrap .icon-wrapper {
  padding-bottom: 8px;
}
.cid-vedN7Yq00M .item .item-wrapper .image-wrapper .rating-wrap .icon-wrapper .mbr-iconfont {
  display: flex;
  margin-left: 4px;
  font-size: 36px;
  color: #ffdd00;
}
.cid-vedN7Yq00M .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-vedN7Yq00M .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-vedN7Yq00M .main-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-vedN7Yq00M .main-btn {
    margin-top: 16px;
  }
}
.cid-vedN7Yq00M .btn-wrapper {
  margin-top: -5%;
}
.cid-vedN7Yq00M .mbr-section-title {
  color: #ffffff;
}
.cid-vedN7Yq00M .mbr-section-title,
.cid-vedN7Yq00M .main-btn {
  text-align: center;
}
.cid-vedN7Yq00M .item-title {
  color: #000c3f;
}
.cid-vedN7Yq00M .item-text {
  color: #ffffff;
}
.cid-vedN7Yq00M .item-number {
  color: #000c3f;
}
.cid-vedN7Yq00M .item-name {
  color: #ffffff;
}
.cid-vedN80wcPl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedN80wcPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN80wcPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN80wcPl .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedN80wcPl .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedN80wcPl .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedN80wcPl .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedN80wcPl .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedN80wcPl .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedN80wcPl .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedN80wcPl .list-wrapper .list .item-wrap:hover,
.cid-vedN80wcPl .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedN80wcPl .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedN80wcPl .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedN80wcPl .social-wrapper {
    text-align: left;
  }
}
.cid-vedN80wcPl .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedN80wcPl .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedN80wcPl .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedN80wcPl .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedN80wcPl .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedN80wcPl .list {
  color: #9aa0a6;
}
.cid-vedN80wcPl .list,
.cid-vedN80wcPl .item-wrap,
.cid-vedN80wcPl .social-wrapper {
  color: #ffffff;
}
.cid-vedN812R8k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedN812R8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN812R8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN812R8k .row {
  justify-content: center;
}
.cid-vedN812R8k .card {
  justify-content: center;
}
.cid-vedN812R8k .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedN812R8k .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedN812R8k .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedN812R8k .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedN812R8k .nav-wrapper .list .item-wrap:hover,
.cid-vedN812R8k .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedN812R8k .list,
.cid-vedN812R8k .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedN9PYvgJ {
  background-color: transparent;
}
.cid-vedN9PYvgJ .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedN9PYvgJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedN9PYvgJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedN9PYvgJ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedN9PYvgJ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedN9PYvgJ .menu_box .navbar.opened,
  .cid-vedN9PYvgJ .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedN9PYvgJ .navbar-dropdown {
  position: relative !important;
}
.cid-vedN9PYvgJ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedN9PYvgJ .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedN9PYvgJ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedN9PYvgJ .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedN9PYvgJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedN9PYvgJ .btn:hover {
  box-shadow: none;
}
.cid-vedN9PYvgJ .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedN9PYvgJ .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedN9PYvgJ .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedN9PYvgJ .nav-item {
    margin: 0 !important;
  }
}
.cid-vedN9PYvgJ .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedN9PYvgJ .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedN9PYvgJ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedN9PYvgJ .nav-item .nav-link:hover,
.cid-vedN9PYvgJ .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedN9PYvgJ .nav-item .nav-link:hover::before,
.cid-vedN9PYvgJ .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedN9PYvgJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedN9PYvgJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedN9PYvgJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedN9PYvgJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedN9PYvgJ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedN9PYvgJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedN9PYvgJ .offcanvas_box {
    display: none;
  }
}
.cid-vedN9PYvgJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedN9PYvgJ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedN9PYvgJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedN9PYvgJ .container {
  display: flex;
  margin: auto;
}
.cid-vedN9PYvgJ .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedN9PYvgJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedN9PYvgJ .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedN9PYvgJ .navbar-nav {
    margin: 0;
  }
}
.cid-vedN9PYvgJ .dropdown-menu,
.cid-vedN9PYvgJ .navbar.opened {
  background-color: false !important;
}
.cid-vedN9PYvgJ .nav-item:focus,
.cid-vedN9PYvgJ .nav-link:focus {
  outline: none;
}
.cid-vedN9PYvgJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedN9PYvgJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedN9PYvgJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedN9PYvgJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedN9PYvgJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedN9PYvgJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedN9PYvgJ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedN9PYvgJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedN9PYvgJ .navbar.opened {
  transition: all 0.3s;
}
.cid-vedN9PYvgJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedN9PYvgJ .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedN9PYvgJ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedN9PYvgJ .navbar.collapsed {
  justify-content: center;
}
.cid-vedN9PYvgJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedN9PYvgJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedN9PYvgJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedN9PYvgJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedN9PYvgJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedN9PYvgJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedN9PYvgJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedN9PYvgJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedN9PYvgJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedN9PYvgJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedN9PYvgJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedN9PYvgJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedN9PYvgJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedN9PYvgJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedN9PYvgJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedN9PYvgJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedN9PYvgJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedN9PYvgJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedN9PYvgJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedN9PYvgJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedN9PYvgJ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedN9PYvgJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedN9PYvgJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedN9PYvgJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedN9PYvgJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedN9PYvgJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedN9PYvgJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedN9PYvgJ .dropdown-item.active,
.cid-vedN9PYvgJ .dropdown-item:active {
  background-color: transparent;
}
.cid-vedN9PYvgJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedN9PYvgJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedN9PYvgJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedN9PYvgJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedN9PYvgJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedN9PYvgJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedN9PYvgJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedN9PYvgJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedN9PYvgJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedN9PYvgJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN9PYvgJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedN9PYvgJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedN9PYvgJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN9PYvgJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedN9PYvgJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedN9PYvgJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedN9PYvgJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedN9PYvgJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedN9PYvgJ .navbar {
    height: 70px;
  }
  .cid-vedN9PYvgJ .navbar.opened {
    height: auto;
  }
  .cid-vedN9PYvgJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedN9PYvgJ .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedN9PYvgJ .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedN9PYvgJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedN9PYvgJ .text_widget {
  margin-bottom: 32px;
}
.cid-vedN9PYvgJ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedN9PYvgJ .text_widget a:hover,
.cid-vedN9PYvgJ .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedN9PYvgJ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedN9PYvgJ .navbar-caption {
  color: #ffffff;
}
.cid-vedN9PYvgJ .mbr-section-subtitle,
.cid-vedN9PYvgJ .text_widget,
.cid-vedN9PYvgJ .mbr-section-btn {
  text-align: center;
}
.cid-vedN9PYvgJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedN9Udyui {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedN9Udyui .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN9Udyui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vedN9Udyui .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-vedN9Udyui .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vedN9Udyui .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: #121212;
  border: 1px solid #252525;
  border-radius: 0;
  margin-top: 12px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-vedN9Udyui .panel-group .card {
    padding: 16px;
  }
}
.cid-vedN9Udyui .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vedN9Udyui .panel-group .card:hover,
.cid-vedN9Udyui .panel-group .card:focus {
  border: 1px solid #078efb;
}
.cid-vedN9Udyui .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-vedN9Udyui .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-vedN9Udyui .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-vedN9Udyui .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #252525;
}
.cid-vedN9Udyui .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-vedN9Udyui .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-vedN9Udyui .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  color: #078efb;
}
.cid-vedN9Udyui .panel-group .card .panel-collapse .panel-body {
  margin-top: 16px;
}
.cid-vedN9Udyui .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-vedN9Udyui .mbr-section-title {
  color: #ffffff;
}
.cid-vedN9Udyui .panel-title-edit {
  color: #ffffff;
}
.cid-vedN9Udyui .panel-text {
  color: #9aa0a6;
}
.cid-vedN9V1Jo9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedN9V1Jo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN9V1Jo9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN9V1Jo9 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedN9V1Jo9 .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedN9V1Jo9 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedN9V1Jo9 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedN9V1Jo9 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedN9V1Jo9 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedN9V1Jo9 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedN9V1Jo9 .list-wrapper .list .item-wrap:hover,
.cid-vedN9V1Jo9 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedN9V1Jo9 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedN9V1Jo9 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedN9V1Jo9 .social-wrapper {
    text-align: left;
  }
}
.cid-vedN9V1Jo9 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedN9V1Jo9 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedN9V1Jo9 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedN9V1Jo9 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedN9V1Jo9 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedN9V1Jo9 .list {
  color: #9aa0a6;
}
.cid-vedN9V1Jo9 .list,
.cid-vedN9V1Jo9 .item-wrap,
.cid-vedN9V1Jo9 .social-wrapper {
  color: #ffffff;
}
.cid-vedN9VvITG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedN9VvITG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedN9VvITG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedN9VvITG .row {
  justify-content: center;
}
.cid-vedN9VvITG .card {
  justify-content: center;
}
.cid-vedN9VvITG .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedN9VvITG .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedN9VvITG .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedN9VvITG .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedN9VvITG .nav-wrapper .list .item-wrap:hover,
.cid-vedN9VvITG .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedN9VvITG .list,
.cid-vedN9VvITG .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedO7UPqJz {
  background-color: transparent;
}
.cid-vedO7UPqJz .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedO7UPqJz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedO7UPqJz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedO7UPqJz .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedO7UPqJz .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedO7UPqJz .menu_box .navbar.opened,
  .cid-vedO7UPqJz .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedO7UPqJz .navbar-dropdown {
  position: relative !important;
}
.cid-vedO7UPqJz .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedO7UPqJz .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedO7UPqJz .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedO7UPqJz .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedO7UPqJz .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedO7UPqJz .btn:hover {
  box-shadow: none;
}
.cid-vedO7UPqJz .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedO7UPqJz .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedO7UPqJz .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedO7UPqJz .nav-item {
    margin: 0 !important;
  }
}
.cid-vedO7UPqJz .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedO7UPqJz .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedO7UPqJz .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedO7UPqJz .nav-item .nav-link:hover,
.cid-vedO7UPqJz .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedO7UPqJz .nav-item .nav-link:hover::before,
.cid-vedO7UPqJz .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedO7UPqJz .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedO7UPqJz .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedO7UPqJz .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedO7UPqJz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedO7UPqJz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedO7UPqJz .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedO7UPqJz .offcanvas_box {
    display: none;
  }
}
.cid-vedO7UPqJz .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedO7UPqJz .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedO7UPqJz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedO7UPqJz .container {
  display: flex;
  margin: auto;
}
.cid-vedO7UPqJz .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedO7UPqJz .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedO7UPqJz .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedO7UPqJz .navbar-nav {
    margin: 0;
  }
}
.cid-vedO7UPqJz .dropdown-menu,
.cid-vedO7UPqJz .navbar.opened {
  background-color: false !important;
}
.cid-vedO7UPqJz .nav-item:focus,
.cid-vedO7UPqJz .nav-link:focus {
  outline: none;
}
.cid-vedO7UPqJz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedO7UPqJz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedO7UPqJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedO7UPqJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedO7UPqJz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedO7UPqJz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedO7UPqJz .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedO7UPqJz .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedO7UPqJz .navbar.opened {
  transition: all 0.3s;
}
.cid-vedO7UPqJz .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedO7UPqJz .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedO7UPqJz .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedO7UPqJz .navbar.collapsed {
  justify-content: center;
}
.cid-vedO7UPqJz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedO7UPqJz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedO7UPqJz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedO7UPqJz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedO7UPqJz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedO7UPqJz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedO7UPqJz .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedO7UPqJz .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedO7UPqJz .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedO7UPqJz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedO7UPqJz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedO7UPqJz .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedO7UPqJz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedO7UPqJz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedO7UPqJz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedO7UPqJz .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedO7UPqJz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedO7UPqJz .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedO7UPqJz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedO7UPqJz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedO7UPqJz .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedO7UPqJz .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedO7UPqJz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedO7UPqJz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedO7UPqJz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedO7UPqJz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedO7UPqJz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedO7UPqJz .dropdown-item.active,
.cid-vedO7UPqJz .dropdown-item:active {
  background-color: transparent;
}
.cid-vedO7UPqJz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedO7UPqJz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedO7UPqJz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedO7UPqJz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedO7UPqJz ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedO7UPqJz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedO7UPqJz button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedO7UPqJz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedO7UPqJz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedO7UPqJz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedO7UPqJz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedO7UPqJz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedO7UPqJz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedO7UPqJz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedO7UPqJz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedO7UPqJz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedO7UPqJz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedO7UPqJz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedO7UPqJz .navbar {
    height: 70px;
  }
  .cid-vedO7UPqJz .navbar.opened {
    height: auto;
  }
  .cid-vedO7UPqJz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedO7UPqJz .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedO7UPqJz .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedO7UPqJz .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedO7UPqJz .text_widget {
  margin-bottom: 32px;
}
.cid-vedO7UPqJz .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedO7UPqJz .text_widget a:hover,
.cid-vedO7UPqJz .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedO7UPqJz .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedO7UPqJz .navbar-caption {
  color: #ffffff;
}
.cid-vedO7UPqJz .mbr-section-subtitle,
.cid-vedO7UPqJz .text_widget,
.cid-vedO7UPqJz .mbr-section-btn {
  text-align: center;
}
.cid-vedO7UPqJz a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedOdwAG8G {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedOdwAG8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOdwAG8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOdwAG8G .icon-wrapper {
  margin-bottom: 20px;
}
.cid-vedOdwAG8G .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 62px;
  color: #000c3f;
}
.cid-vedOdwAG8G .mbr-text {
  margin-bottom: 32px;
  color: #000c3f;
}
.cid-vedOdwAG8G .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vedOdwAG8G .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-vedOdwAG8G .mbr-desc,
.cid-vedOdwAG8G .desc-wrapper {
  color: #9aa0a6;
  text-align: left;
}
.cid-vedOdwAG8G .mbr-text,
.cid-vedOdwAG8G .icon-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-vedO7VvGI2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedO7VvGI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedO7VvGI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedO7VvGI2 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedO7VvGI2 .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedO7VvGI2 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedO7VvGI2 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedO7VvGI2 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedO7VvGI2 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedO7VvGI2 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedO7VvGI2 .list-wrapper .list .item-wrap:hover,
.cid-vedO7VvGI2 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedO7VvGI2 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedO7VvGI2 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedO7VvGI2 .social-wrapper {
    text-align: left;
  }
}
.cid-vedO7VvGI2 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedO7VvGI2 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedO7VvGI2 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedO7VvGI2 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedO7VvGI2 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedO7VvGI2 .list {
  color: #9aa0a6;
}
.cid-vedO7VvGI2 .list,
.cid-vedO7VvGI2 .item-wrap,
.cid-vedO7VvGI2 .social-wrapper {
  color: #ffffff;
}
.cid-vedO7VVfOm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedO7VVfOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedO7VVfOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedO7VVfOm .row {
  justify-content: center;
}
.cid-vedO7VVfOm .card {
  justify-content: center;
}
.cid-vedO7VVfOm .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedO7VVfOm .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedO7VVfOm .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedO7VVfOm .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedO7VVfOm .nav-wrapper .list .item-wrap:hover,
.cid-vedO7VVfOm .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedO7VVfOm .list,
.cid-vedO7VVfOm .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedOozIZ53 {
  background-color: transparent;
}
.cid-vedOozIZ53 .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedOozIZ53 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedOozIZ53 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedOozIZ53 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedOozIZ53 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedOozIZ53 .menu_box .navbar.opened,
  .cid-vedOozIZ53 .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedOozIZ53 .navbar-dropdown {
  position: relative !important;
}
.cid-vedOozIZ53 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedOozIZ53 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedOozIZ53 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedOozIZ53 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedOozIZ53 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedOozIZ53 .btn:hover {
  box-shadow: none;
}
.cid-vedOozIZ53 .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedOozIZ53 .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedOozIZ53 .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedOozIZ53 .nav-item {
    margin: 0 !important;
  }
}
.cid-vedOozIZ53 .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedOozIZ53 .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedOozIZ53 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedOozIZ53 .nav-item .nav-link:hover,
.cid-vedOozIZ53 .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedOozIZ53 .nav-item .nav-link:hover::before,
.cid-vedOozIZ53 .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedOozIZ53 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedOozIZ53 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedOozIZ53 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedOozIZ53 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedOozIZ53 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedOozIZ53 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedOozIZ53 .offcanvas_box {
    display: none;
  }
}
.cid-vedOozIZ53 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedOozIZ53 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedOozIZ53 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedOozIZ53 .container {
  display: flex;
  margin: auto;
}
.cid-vedOozIZ53 .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedOozIZ53 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedOozIZ53 .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedOozIZ53 .navbar-nav {
    margin: 0;
  }
}
.cid-vedOozIZ53 .dropdown-menu,
.cid-vedOozIZ53 .navbar.opened {
  background-color: false !important;
}
.cid-vedOozIZ53 .nav-item:focus,
.cid-vedOozIZ53 .nav-link:focus {
  outline: none;
}
.cid-vedOozIZ53 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedOozIZ53 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedOozIZ53 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedOozIZ53 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedOozIZ53 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedOozIZ53 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedOozIZ53 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedOozIZ53 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedOozIZ53 .navbar.opened {
  transition: all 0.3s;
}
.cid-vedOozIZ53 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedOozIZ53 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedOozIZ53 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedOozIZ53 .navbar.collapsed {
  justify-content: center;
}
.cid-vedOozIZ53 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedOozIZ53 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedOozIZ53 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedOozIZ53 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedOozIZ53 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedOozIZ53 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedOozIZ53 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedOozIZ53 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedOozIZ53 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedOozIZ53 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedOozIZ53 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedOozIZ53 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedOozIZ53 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedOozIZ53 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedOozIZ53 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedOozIZ53 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedOozIZ53 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedOozIZ53 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedOozIZ53 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedOozIZ53 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedOozIZ53 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedOozIZ53 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedOozIZ53 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedOozIZ53 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedOozIZ53 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedOozIZ53 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedOozIZ53 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedOozIZ53 .dropdown-item.active,
.cid-vedOozIZ53 .dropdown-item:active {
  background-color: transparent;
}
.cid-vedOozIZ53 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedOozIZ53 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedOozIZ53 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedOozIZ53 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedOozIZ53 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedOozIZ53 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedOozIZ53 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedOozIZ53 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedOozIZ53 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedOozIZ53 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedOozIZ53 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedOozIZ53 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedOozIZ53 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedOozIZ53 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedOozIZ53 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedOozIZ53 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedOozIZ53 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedOozIZ53 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedOozIZ53 .navbar {
    height: 70px;
  }
  .cid-vedOozIZ53 .navbar.opened {
    height: auto;
  }
  .cid-vedOozIZ53 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedOozIZ53 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedOozIZ53 .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedOozIZ53 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedOozIZ53 .text_widget {
  margin-bottom: 32px;
}
.cid-vedOozIZ53 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedOozIZ53 .text_widget a:hover,
.cid-vedOozIZ53 .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedOozIZ53 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedOozIZ53 .navbar-caption {
  color: #ffffff;
}
.cid-vedOozIZ53 .mbr-section-subtitle,
.cid-vedOozIZ53 .text_widget,
.cid-vedOozIZ53 .mbr-section-btn {
  text-align: center;
}
.cid-vedOozIZ53 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedOoAgn7M {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedOoAgn7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOoAgn7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOoAgn7M .icon-wrapper {
  margin-bottom: 20px;
}
.cid-vedOoAgn7M .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 62px;
  color: #000c3f;
}
.cid-vedOoAgn7M .mbr-text {
  margin-bottom: 32px;
  color: #000c3f;
}
.cid-vedOoAgn7M .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vedOoAgn7M .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-vedOoAgn7M .mbr-desc,
.cid-vedOoAgn7M .desc-wrapper {
  color: #9aa0a6;
  text-align: left;
}
.cid-vedOoAgn7M .mbr-text,
.cid-vedOoAgn7M .icon-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-vedOoASGVC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedOoASGVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOoASGVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOoASGVC .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedOoASGVC .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedOoASGVC .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedOoASGVC .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedOoASGVC .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedOoASGVC .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedOoASGVC .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedOoASGVC .list-wrapper .list .item-wrap:hover,
.cid-vedOoASGVC .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedOoASGVC .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedOoASGVC .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedOoASGVC .social-wrapper {
    text-align: left;
  }
}
.cid-vedOoASGVC .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedOoASGVC .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedOoASGVC .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedOoASGVC .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedOoASGVC .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedOoASGVC .list {
  color: #9aa0a6;
}
.cid-vedOoASGVC .list,
.cid-vedOoASGVC .item-wrap,
.cid-vedOoASGVC .social-wrapper {
  color: #ffffff;
}
.cid-vedOoBlEDm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedOoBlEDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOoBlEDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOoBlEDm .row {
  justify-content: center;
}
.cid-vedOoBlEDm .card {
  justify-content: center;
}
.cid-vedOoBlEDm .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedOoBlEDm .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedOoBlEDm .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedOoBlEDm .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedOoBlEDm .nav-wrapper .list .item-wrap:hover,
.cid-vedOoBlEDm .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedOoBlEDm .list,
.cid-vedOoBlEDm .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vedOFgWuX6 {
  background-color: transparent;
}
.cid-vedOFgWuX6 .navbar-dropdown {
  background-color: #060606 !important;
  padding: 0;
}
.cid-vedOFgWuX6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #060606 !important;
  background: #060606;
}
.cid-vedOFgWuX6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vedOFgWuX6 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vedOFgWuX6 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-vedOFgWuX6 .menu_box .navbar.opened,
  .cid-vedOFgWuX6 .menu_box .navbar-collapse {
    background-color: #060606 !important;
    transition: all 0s ease 0s;
  }
}
.cid-vedOFgWuX6 .navbar-dropdown {
  position: relative !important;
}
.cid-vedOFgWuX6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-vedOFgWuX6 .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vedOFgWuX6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-vedOFgWuX6 .mbr-section-btn-main .btn {
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-vedOFgWuX6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-vedOFgWuX6 .btn:hover {
  box-shadow: none;
}
.cid-vedOFgWuX6 .nav-item {
  margin: 4px 0;
}
@media (min-width: 992px) {
  .cid-vedOFgWuX6 .nav-item {
    margin: 4px 40px 4px 0;
  }
}
@media (min-width: 992px) {
  .cid-vedOFgWuX6 .nav-item {
    margin: 4px 0;
  }
}
@media (max-width: 991px) {
  .cid-vedOFgWuX6 .nav-item {
    margin: 0 !important;
  }
}
.cid-vedOFgWuX6 .nav-item .nav-link {
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s ease-out;
  border-radius: 4px !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vedOFgWuX6 .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-vedOFgWuX6 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #078efb;
  transition: all 0.3s ease-out;
}
.cid-vedOFgWuX6 .nav-item .nav-link:hover,
.cid-vedOFgWuX6 .nav-item .nav-link:focus {
  background-color: #252525;
  color: #078efb !important;
}
.cid-vedOFgWuX6 .nav-item .nav-link:hover::before,
.cid-vedOFgWuX6 .nav-item .nav-link:focus::before {
  width: 80%;
}
.cid-vedOFgWuX6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-vedOFgWuX6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-vedOFgWuX6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-vedOFgWuX6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-vedOFgWuX6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-vedOFgWuX6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-vedOFgWuX6 .offcanvas_box {
    display: none;
  }
}
.cid-vedOFgWuX6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-vedOFgWuX6 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-vedOFgWuX6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-vedOFgWuX6 .container {
  display: flex;
  margin: auto;
}
.cid-vedOFgWuX6 .iconfont-wrapper {
  color: #ffffff;
  font-size: 26px;
  margin-right: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.cid-vedOFgWuX6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-vedOFgWuX6 .iconfont-wrapper:hover .mbr-iconfont {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-vedOFgWuX6 .navbar-nav {
    margin: 0;
  }
}
.cid-vedOFgWuX6 .dropdown-menu,
.cid-vedOFgWuX6 .navbar.opened {
  background-color: false !important;
}
.cid-vedOFgWuX6 .nav-item:focus,
.cid-vedOFgWuX6 .nav-link:focus {
  outline: none;
}
.cid-vedOFgWuX6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vedOFgWuX6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vedOFgWuX6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vedOFgWuX6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vedOFgWuX6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vedOFgWuX6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vedOFgWuX6 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-vedOFgWuX6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-vedOFgWuX6 .navbar.opened {
  transition: all 0.3s;
}
.cid-vedOFgWuX6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-vedOFgWuX6 .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-vedOFgWuX6 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vedOFgWuX6 .navbar.collapsed {
  justify-content: center;
}
.cid-vedOFgWuX6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vedOFgWuX6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vedOFgWuX6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vedOFgWuX6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vedOFgWuX6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vedOFgWuX6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-vedOFgWuX6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vedOFgWuX6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-vedOFgWuX6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-vedOFgWuX6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vedOFgWuX6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vedOFgWuX6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-vedOFgWuX6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vedOFgWuX6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-vedOFgWuX6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vedOFgWuX6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-vedOFgWuX6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-vedOFgWuX6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-vedOFgWuX6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-vedOFgWuX6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vedOFgWuX6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-vedOFgWuX6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vedOFgWuX6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vedOFgWuX6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vedOFgWuX6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vedOFgWuX6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-vedOFgWuX6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vedOFgWuX6 .dropdown-item.active,
.cid-vedOFgWuX6 .dropdown-item:active {
  background-color: transparent;
}
.cid-vedOFgWuX6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 6px 16px !important;
}
.cid-vedOFgWuX6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vedOFgWuX6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vedOFgWuX6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vedOFgWuX6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-vedOFgWuX6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vedOFgWuX6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #060606;
  background: #252525;
}
.cid-vedOFgWuX6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vedOFgWuX6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vedOFgWuX6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedOFgWuX6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vedOFgWuX6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vedOFgWuX6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedOFgWuX6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vedOFgWuX6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vedOFgWuX6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vedOFgWuX6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-vedOFgWuX6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vedOFgWuX6 .navbar {
    height: 70px;
  }
  .cid-vedOFgWuX6 .navbar.opened {
    height: auto;
  }
  .cid-vedOFgWuX6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vedOFgWuX6 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-vedOFgWuX6 .navbar-caption:hover {
  color: #060606;
}
@media (min-width: 992px) {
  .cid-vedOFgWuX6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-vedOFgWuX6 .text_widget {
  margin-bottom: 32px;
}
.cid-vedOFgWuX6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-vedOFgWuX6 .text_widget a:hover,
.cid-vedOFgWuX6 .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-vedOFgWuX6 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 48px;
  }
}
.cid-vedOFgWuX6 .navbar-caption {
  color: #ffffff;
}
.cid-vedOFgWuX6 .mbr-section-subtitle,
.cid-vedOFgWuX6 .text_widget,
.cid-vedOFgWuX6 .mbr-section-btn {
  text-align: center;
}
.cid-vedOFgWuX6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-vedOFhi4PC {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-vedOFhi4PC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOFhi4PC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOFhi4PC .icon-wrapper {
  margin-bottom: 20px;
}
.cid-vedOFhi4PC .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 62px;
  color: #000c3f;
}
.cid-vedOFhi4PC .mbr-text {
  margin-bottom: 32px;
  color: #000c3f;
}
.cid-vedOFhi4PC .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vedOFhi4PC .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-vedOFhi4PC .mbr-desc,
.cid-vedOFhi4PC .desc-wrapper {
  color: #9aa0a6;
  text-align: left;
}
.cid-vedOFhi4PC .mbr-text,
.cid-vedOFhi4PC .icon-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-vedOFhAGrR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #060606;
}
.cid-vedOFhAGrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOFhAGrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOFhAGrR .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vedOFhAGrR .google-map {
    margin-bottom: 48px;
  }
}
.cid-vedOFhAGrR .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vedOFhAGrR .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-vedOFhAGrR .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-vedOFhAGrR .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vedOFhAGrR .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-vedOFhAGrR .list-wrapper .list .item-wrap:hover,
.cid-vedOFhAGrR .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vedOFhAGrR .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vedOFhAGrR .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vedOFhAGrR .social-wrapper {
    text-align: left;
  }
}
.cid-vedOFhAGrR .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vedOFhAGrR .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vedOFhAGrR .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vedOFhAGrR .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-vedOFhAGrR .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vedOFhAGrR .list {
  color: #9aa0a6;
}
.cid-vedOFhAGrR .list,
.cid-vedOFhAGrR .item-wrap,
.cid-vedOFhAGrR .social-wrapper {
  color: #ffffff;
}
.cid-vedOFi0hLF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #060606;
}
.cid-vedOFi0hLF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vedOFi0hLF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vedOFi0hLF .row {
  justify-content: center;
}
.cid-vedOFi0hLF .card {
  justify-content: center;
}
.cid-vedOFi0hLF .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vedOFi0hLF .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vedOFi0hLF .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vedOFi0hLF .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vedOFi0hLF .nav-wrapper .list .item-wrap:hover,
.cid-vedOFi0hLF .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-vedOFi0hLF .list,
.cid-vedOFi0hLF .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
