body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Airbolt';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #07f40d !important;
}
.bg-success {
  background-color: #00ffe6 !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #facb00 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #07f40d !important;
  border-color: #07f40d !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #05a009 !important;
  border-color: #05a009 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #05a009 !important;
  border-color: #05a009 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #00ffe6 !important;
  border-color: #00ffe6 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #00a898 !important;
  border-color: #00a898 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #00a898 !important;
  border-color: #00a898 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #facb00 !important;
  border-color: #facb00 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a38500 !important;
  border-color: #a38500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #a38500 !important;
  border-color: #a38500 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #07f40d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #05a009 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #07f40d !important;
  border-color: #07f40d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00ffe6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #00a898 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #00ffe6 !important;
  border-color: #00ffe6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #facb00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a38500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #facb00 !important;
  border-color: #facb00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #07f40d !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #00ffe6 !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #facb00 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #049108 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #00998a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #947800 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #07f40d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #facb00;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #07f40d;
  border-color: #07f40d;
  color: #011501;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #07f40d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cafdcb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ccfffa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff4c7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #07f40d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #07f40d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #07f40d;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #07f40d;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #07f40d;
  border-bottom-color: #07f40d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #07f40d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%2307f40d' %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;
}
.cid-v8G6yHKhmv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v8G6yHKhmv nav.navbar {
  position: fixed;
}
.cid-v8G6yHKhmv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8G6yHKhmv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8G6yHKhmv .dropdown-item:hover,
.cid-v8G6yHKhmv .dropdown-item:focus {
  background: #07f40d !important;
  color: white !important;
}
.cid-v8G6yHKhmv .dropdown-item:hover span {
  color: white;
}
.cid-v8G6yHKhmv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8G6yHKhmv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8G6yHKhmv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8G6yHKhmv .nav-link {
  position: relative;
}
.cid-v8G6yHKhmv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown-menu,
.cid-v8G6yHKhmv .navbar.opened {
  background: #232323 !important;
}
.cid-v8G6yHKhmv .nav-item:focus,
.cid-v8G6yHKhmv .nav-link:focus {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8G6yHKhmv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8G6yHKhmv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.opened {
  transition: all 0.3s;
}
.cid-v8G6yHKhmv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8G6yHKhmv .navbar .navbar-logo img {
  width: auto;
}
.cid-v8G6yHKhmv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8G6yHKhmv .navbar.collapsed {
  justify-content: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8G6yHKhmv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8G6yHKhmv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v8G6yHKhmv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8G6yHKhmv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v8G6yHKhmv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8G6yHKhmv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8G6yHKhmv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8G6yHKhmv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8G6yHKhmv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8G6yHKhmv .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-v8G6yHKhmv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8G6yHKhmv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown-item.active,
.cid-v8G6yHKhmv .dropdown-item:active {
  background-color: transparent;
}
.cid-v8G6yHKhmv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8G6yHKhmv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8G6yHKhmv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8G6yHKhmv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8G6yHKhmv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8G6yHKhmv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8G6yHKhmv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v8G6yHKhmv .navbar {
    height: 70px;
  }
  .cid-v8G6yHKhmv .navbar.opened {
    height: auto;
  }
  .cid-v8G6yHKhmv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8G6yHKhmv .neon-text {
  margin-left: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v8G6yHKhmv .rounder {
  border-radius: 30px;
}
.cid-uKufqYulDI {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/7-1920x1080.jpg");
}
.cid-uKufqYulDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKufqYulDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKufqYulDI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uKufqYulDI .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uKufqYulDI .embla__button--next,
.cid-uKufqYulDI .embla__button--prev {
  display: flex;
}
.cid-uKufqYulDI .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uKufqYulDI .embla__button {
    display: none;
  }
}
.cid-uKufqYulDI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKufqYulDI .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uKufqYulDI .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKufqYulDI .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uKufqYulDI .embla__button {
    top: auto;
  }
}
.cid-uKufqYulDI .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uKufqYulDI .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uKufqYulDI .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uKufqYulDI .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uKufqYulDI .embla {
  position: relative;
  width: 100%;
}
.cid-uKufqYulDI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uKufqYulDI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKufqYulDI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKufqYulDI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKufqYulDI H3 {
  color: #ffe161;
}
.cid-uKufqYulDI .user_name {
  color: #bed3f9;
}
.cid-uKufqYulDI .user_text {
  color: #fafafa;
}
.cid-vaFlVBl4RF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/35-1920x1080.jpg");
}
.cid-vaFlVBl4RF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaFlVBl4RF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaFlVBl4RF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-vaFlVBl4RF .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vaFlVBl4RF .embla__button--next,
.cid-vaFlVBl4RF .embla__button--prev {
  display: flex;
}
.cid-vaFlVBl4RF .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vaFlVBl4RF .embla__button {
    display: none;
  }
}
.cid-vaFlVBl4RF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vaFlVBl4RF .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vaFlVBl4RF .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vaFlVBl4RF .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-vaFlVBl4RF .embla__button {
    top: auto;
  }
}
.cid-vaFlVBl4RF .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-vaFlVBl4RF .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-vaFlVBl4RF .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-vaFlVBl4RF .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-vaFlVBl4RF .embla {
  position: relative;
  width: 100%;
}
.cid-vaFlVBl4RF .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vaFlVBl4RF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaFlVBl4RF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaFlVBl4RF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vaFlVBl4RF H3 {
  color: #afff00;
}
.cid-vaFlVBl4RF .user_name {
  color: #00ffe6;
}
.cid-vaFlVBl4RF .user_text {
  color: #ffffff;
  text-align: center;
}
.cid-uKujqwUkzH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uKujqwUkzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKujqwUkzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKujqwUkzH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKujqwUkzH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKujqwUkzH .row {
    text-align: center;
  }
  .cid-uKujqwUkzH .row > div {
    margin: auto;
  }
  .cid-uKujqwUkzH .social-row {
    justify-content: center;
  }
}
.cid-uKujqwUkzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uKujqwUkzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uKujqwUkzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKujqwUkzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uKujqwUkzH .mbr-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-uKujqwUkzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uKujqwUkzH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uKujqwUkzH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uKujqwUkzH H3 {
  text-align: center;
}
.cid-uKujqwUkzH .neon-text {
  margin-top: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKujqwUkzH .copyright {
  text-align: center;
}
.cid-uPrHXZqGGD {
  background-image: url("../../../assets/images/30-2000x1125.jpg");
}
.cid-uPrHXZqGGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPrHXZqGGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPrHXZqGGD .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uPrHXZqGGD .number {
  color: #00fff5;
}
.cid-uPrHXZqGGD .period {
  display: block;
}
.cid-uPrHXZqGGD .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uPrHXZqGGD .period {
    font-size: 0.8rem;
  }
}
.cid-uPrHXZqGGD .btn {
  height: 100%;
  margin: 0;
  border-radius: 50px;
}
.cid-uPrHXZqGGD .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uPrHXZqGGD form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uPrHXZqGGD form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uPrHXZqGGD form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uPrHXZqGGD .mbr-section-title {
  color: #00fff5;
}
.cid-uPrHXZqGGD .mbr-section-subtitle {
  color: #ede5e5;
}
.cid-uPrHXZqGGD .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.cid-uPrHXZqGGD .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 5px solid;
  border-image: linear-gradient(to right, purple, cyan);
  border-image-slice: 1;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  max-height: 70%;
  overflow-y: auto;
  text-align: center;
  z-index: 999;
}
.cid-uPrHXZqGGD .close-button {
  cursor: pointer;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.cid-uPrHXZqGGD .close-button:hover {
  color: red;
}
.cid-uPrHXZqGGD .mbr-text {
  color: #12ea71;
}
.cid-uPrHXZqGGD H3 {
  color: #111111;
}
.cid-uPrHXZqGGD H5 {
  text-align: center;
  color: #fff0b0;
}
.cid-uPrHXZqGGD .cap-border {
  display: inline-block;
  border: 2px solid #00fff5;
  padding: 5px;
  border-radius: 0px 0px;
  text-decoration: none;
  font-size: 25px;
  color: #ede5e5;
}
.cid-uPrHXZqGGD .glow-text {
  font-size: 18px;
  color: #000000;
  position: relative;
  display: inline-block;
  animation: gradientChange 5s infinite alternate;
}
@keyframes gradientChange {
  0% {
    color: #ff4e50;
    text-shadow: 0 0 10px rgba(255, 78, 80, 0.8);
  }
  20% {
    color: #ff9f43;
    text-shadow: 0 0 20px rgba(255, 159, 67, 0.8);
  }
  40% {
    color: #ffc93c;
    text-shadow: 0 0 10px rgba(255, 201, 60, 0.8);
  }
  60% {
    color: #4acf78;
    text-shadow: 0 0 20px rgba(74, 204, 120, 0.8);
  }
  80% {
    color: #2c3e50;
    text-shadow: 0 0 10px rgba(44, 62, 80, 0.8);
  }
  100% {
    color: #3498db;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
  }
}
.cid-uPrHXZqGGD .reduce-top-margin {
  margin-top: -25px;
}
.cid-uPrHYzUIfu {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/44-1920x1200.jpg");
}
.cid-uPrHYzUIfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPrHYzUIfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPrHYzUIfu body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #f4f4f4;
}
.cid-uPrHYzUIfu .card {
  display: inline-block;
  width: calc(30%);
  margin: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.cid-uPrHYzUIfu .card:hover {
  transform: translateY(-10px);
}
.cid-uPrHYzUIfu .heading {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}
.cid-uPrHYzUIfu .description {
  padding: 15px;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  .cid-uPrHYzUIfu .card {
    width: calc(30%);
  }
}
@media (max-width: 480px) {
  .cid-uPrHYzUIfu .card {
    width: 100%;
  }
}
.cid-uPrHYzUIfu .mbr-text,
.cid-uPrHYzUIfu .mbr-section-btn P {
  text-align: right;
}
.cid-uPrHYzUIfu .mbr-text,
.cid-uPrHYzUIfu .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-uKujqwUkzH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uKujqwUkzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKujqwUkzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKujqwUkzH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKujqwUkzH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKujqwUkzH .row {
    text-align: center;
  }
  .cid-uKujqwUkzH .row > div {
    margin: auto;
  }
  .cid-uKujqwUkzH .social-row {
    justify-content: center;
  }
}
.cid-uKujqwUkzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uKujqwUkzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uKujqwUkzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKujqwUkzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uKujqwUkzH .mbr-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-uKujqwUkzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uKujqwUkzH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uKujqwUkzH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uKujqwUkzH H3 {
  text-align: center;
}
.cid-uKujqwUkzH .neon-text {
  margin-top: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uKujqwUkzH .copyright {
  text-align: center;
}
.cid-v8G6yHKhmv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v8G6yHKhmv nav.navbar {
  position: fixed;
}
.cid-v8G6yHKhmv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8G6yHKhmv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8G6yHKhmv .dropdown-item:hover,
.cid-v8G6yHKhmv .dropdown-item:focus {
  background: #07f40d !important;
  color: white !important;
}
.cid-v8G6yHKhmv .dropdown-item:hover span {
  color: white;
}
.cid-v8G6yHKhmv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8G6yHKhmv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8G6yHKhmv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8G6yHKhmv .nav-link {
  position: relative;
}
.cid-v8G6yHKhmv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown-menu,
.cid-v8G6yHKhmv .navbar.opened {
  background: #232323 !important;
}
.cid-v8G6yHKhmv .nav-item:focus,
.cid-v8G6yHKhmv .nav-link:focus {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8G6yHKhmv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8G6yHKhmv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.opened {
  transition: all 0.3s;
}
.cid-v8G6yHKhmv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8G6yHKhmv .navbar .navbar-logo img {
  width: auto;
}
.cid-v8G6yHKhmv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8G6yHKhmv .navbar.collapsed {
  justify-content: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8G6yHKhmv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8G6yHKhmv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v8G6yHKhmv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8G6yHKhmv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v8G6yHKhmv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8G6yHKhmv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8G6yHKhmv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8G6yHKhmv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8G6yHKhmv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8G6yHKhmv .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-v8G6yHKhmv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8G6yHKhmv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown-item.active,
.cid-v8G6yHKhmv .dropdown-item:active {
  background-color: transparent;
}
.cid-v8G6yHKhmv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8G6yHKhmv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8G6yHKhmv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8G6yHKhmv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8G6yHKhmv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8G6yHKhmv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8G6yHKhmv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v8G6yHKhmv .navbar {
    height: 70px;
  }
  .cid-v8G6yHKhmv .navbar.opened {
    height: auto;
  }
  .cid-v8G6yHKhmv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8G6yHKhmv .neon-text {
  margin-left: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v8G6yHKhmv .rounder {
  border-radius: 30px;
}
.cid-uQ3QbHWW20 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/8-2000x1250.jpg");
}
.cid-uQ3QbHWW20 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQ3QbHWW20 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQ3QbHWW20 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uQ3QbHWW20 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uQ3QbHWW20 .embla__button--next,
.cid-uQ3QbHWW20 .embla__button--prev {
  display: flex;
}
.cid-uQ3QbHWW20 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uQ3QbHWW20 .embla__button {
    display: none;
  }
}
.cid-uQ3QbHWW20 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uQ3QbHWW20 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uQ3QbHWW20 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQ3QbHWW20 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uQ3QbHWW20 .embla__button {
    top: auto;
  }
}
.cid-uQ3QbHWW20 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uQ3QbHWW20 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uQ3QbHWW20 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uQ3QbHWW20 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uQ3QbHWW20 .embla {
  position: relative;
  width: 100%;
}
.cid-uQ3QbHWW20 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uQ3QbHWW20 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQ3QbHWW20 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQ3QbHWW20 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQ3QbHWW20 H3 {
  color: #2cd58c;
}
.cid-uQ3QbHWW20 .user_name {
  color: #00ffd9;
}
.cid-uQ3QbHWW20 .user_text {
  color: #fafafa;
}
.cid-uQ3PYd86Qn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uQ3PYd86Qn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQ3PYd86Qn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQ3PYd86Qn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uQ3PYd86Qn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uQ3PYd86Qn .row {
    text-align: center;
  }
  .cid-uQ3PYd86Qn .row > div {
    margin: auto;
  }
  .cid-uQ3PYd86Qn .social-row {
    justify-content: center;
  }
}
.cid-uQ3PYd86Qn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uQ3PYd86Qn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uQ3PYd86Qn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQ3PYd86Qn .list {
    margin-bottom: 0rem;
  }
}
.cid-uQ3PYd86Qn .mbr-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-uQ3PYd86Qn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uQ3PYd86Qn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uQ3PYd86Qn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uQ3PYd86Qn H3 {
  text-align: center;
}
.cid-uQ3PYd86Qn .neon-text {
  margin-top: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uQ3PYd86Qn .copyright {
  text-align: center;
}
.cid-v8G6yHKhmv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v8G6yHKhmv nav.navbar {
  position: fixed;
}
.cid-v8G6yHKhmv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8G6yHKhmv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8G6yHKhmv .dropdown-item:hover,
.cid-v8G6yHKhmv .dropdown-item:focus {
  background: #07f40d !important;
  color: white !important;
}
.cid-v8G6yHKhmv .dropdown-item:hover span {
  color: white;
}
.cid-v8G6yHKhmv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8G6yHKhmv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8G6yHKhmv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8G6yHKhmv .nav-link {
  position: relative;
}
.cid-v8G6yHKhmv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown-menu,
.cid-v8G6yHKhmv .navbar.opened {
  background: #232323 !important;
}
.cid-v8G6yHKhmv .nav-item:focus,
.cid-v8G6yHKhmv .nav-link:focus {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8G6yHKhmv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8G6yHKhmv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.opened {
  transition: all 0.3s;
}
.cid-v8G6yHKhmv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8G6yHKhmv .navbar .navbar-logo img {
  width: auto;
}
.cid-v8G6yHKhmv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8G6yHKhmv .navbar.collapsed {
  justify-content: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8G6yHKhmv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8G6yHKhmv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v8G6yHKhmv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8G6yHKhmv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v8G6yHKhmv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8G6yHKhmv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8G6yHKhmv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8G6yHKhmv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8G6yHKhmv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8G6yHKhmv .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-v8G6yHKhmv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8G6yHKhmv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown-item.active,
.cid-v8G6yHKhmv .dropdown-item:active {
  background-color: transparent;
}
.cid-v8G6yHKhmv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8G6yHKhmv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8G6yHKhmv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8G6yHKhmv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8G6yHKhmv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8G6yHKhmv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8G6yHKhmv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v8G6yHKhmv .navbar {
    height: 70px;
  }
  .cid-v8G6yHKhmv .navbar.opened {
    height: auto;
  }
  .cid-v8G6yHKhmv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8G6yHKhmv .neon-text {
  margin-left: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v8G6yHKhmv .rounder {
  border-radius: 30px;
}
.cid-tWVJPUllFl {
  background-image: url("../../../assets/images/8-2000x1250.jpg");
  padding-top: 10rem;
  padding-bottom: 1rem;
}
.cid-tWVJPUllFl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWVJPUllFl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWVJPUllFl .nav-tabs .nav-item.open .nav-link:focus,
.cid-tWVJPUllFl .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tWVJPUllFl .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-tWVJPUllFl .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tWVJPUllFl .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tWVJPUllFl .nav-tabs .nav-link:not(.active) {
  color: #fafafa;
}
.cid-tWVJPUllFl .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tWVJPUllFl .nav-link,
.cid-tWVJPUllFl .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tWVJPUllFl .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-tWVJPUllFl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tWVJPUllFl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWVJPUllFl .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #07f40d;
}
.cid-tWVJPUllFl .panel-body,
.cid-tWVJPUllFl .card-header {
  padding: 1rem 0;
}
.cid-tWVJPUllFl .panel-title-edit {
  color: #fafafa;
}
.cid-tWVJPUllFl H4 {
  text-align: center;
  color: #ffffff;
}
.cid-tWVJPUllFl H3 {
  text-align: center;
  color: #00ff1d;
}
@media (max-width: 767px) {
  .cid-tWVJPUllFl .row {
    flex-direction: column-reverse;
  }
  .cid-tWVJPUllFl .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-tWVJPUllFl .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tWVJPUllFl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tWVJPUllFl .media-content,
.cid-tWVJPUllFl .mbr-figure {
  align-self: center;
}
.cid-tWVJPUllFl .mbr-figure iframe {
  width: 100%;
}
.cid-tWVJPUllFl .mbr-text,
.cid-tWVJPUllFl .mbr-section-btn {
  color: #ffe161;
}
.cid-tWVJPUllFl .btn {
  border-radius: 50px;
}
.cid-v8G6yHKhmv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v8G6yHKhmv nav.navbar {
  position: fixed;
}
.cid-v8G6yHKhmv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8G6yHKhmv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8G6yHKhmv .dropdown-item:hover,
.cid-v8G6yHKhmv .dropdown-item:focus {
  background: #07f40d !important;
  color: white !important;
}
.cid-v8G6yHKhmv .dropdown-item:hover span {
  color: white;
}
.cid-v8G6yHKhmv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8G6yHKhmv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8G6yHKhmv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8G6yHKhmv .nav-link {
  position: relative;
}
.cid-v8G6yHKhmv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v8G6yHKhmv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown-menu,
.cid-v8G6yHKhmv .navbar.opened {
  background: #232323 !important;
}
.cid-v8G6yHKhmv .nav-item:focus,
.cid-v8G6yHKhmv .nav-link:focus {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8G6yHKhmv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8G6yHKhmv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8G6yHKhmv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8G6yHKhmv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.opened {
  transition: all 0.3s;
}
.cid-v8G6yHKhmv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8G6yHKhmv .navbar .navbar-logo img {
  width: auto;
}
.cid-v8G6yHKhmv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8G6yHKhmv .navbar.collapsed {
  justify-content: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8G6yHKhmv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8G6yHKhmv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v8G6yHKhmv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8G6yHKhmv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8G6yHKhmv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8G6yHKhmv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8G6yHKhmv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v8G6yHKhmv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8G6yHKhmv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8G6yHKhmv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8G6yHKhmv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8G6yHKhmv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8G6yHKhmv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8G6yHKhmv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8G6yHKhmv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8G6yHKhmv .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-v8G6yHKhmv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8G6yHKhmv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8G6yHKhmv .dropdown-item.active,
.cid-v8G6yHKhmv .dropdown-item:active {
  background-color: transparent;
}
.cid-v8G6yHKhmv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8G6yHKhmv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-v8G6yHKhmv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8G6yHKhmv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8G6yHKhmv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8G6yHKhmv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8G6yHKhmv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8G6yHKhmv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8G6yHKhmv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8G6yHKhmv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8G6yHKhmv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8G6yHKhmv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v8G6yHKhmv .navbar {
    height: 70px;
  }
  .cid-v8G6yHKhmv .navbar.opened {
    height: auto;
  }
  .cid-v8G6yHKhmv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8G6yHKhmv .neon-text {
  margin-left: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v8G6yHKhmv .rounder {
  border-radius: 30px;
}
.cid-v8G7QfkZXl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v8G7QfkZXl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8G7QfkZXl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8G7QfkZXl .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v8G7QfkZXl .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-v8G7QfkZXl .row {
    text-align: center;
  }
  .cid-v8G7QfkZXl .row > div {
    margin: auto;
  }
  .cid-v8G7QfkZXl .social-row {
    justify-content: center;
  }
}
.cid-v8G7QfkZXl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v8G7QfkZXl .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v8G7QfkZXl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8G7QfkZXl .list {
    margin-bottom: 0rem;
  }
}
.cid-v8G7QfkZXl .mbr-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-v8G7QfkZXl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v8G7QfkZXl .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-v8G7QfkZXl div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v8G7QfkZXl H3 {
  text-align: center;
}
.cid-v8G7QfkZXl .neon-text {
  margin-top: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v8G7QfkZXl .copyright {
  text-align: center;
}
.cid-vaGjxS6N9M {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/36-1920x1200.jpg");
}
.cid-vaGjxS6N9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaGjxS6N9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaGjxS6N9M .mbr-text,
.cid-vaGjxS6N9M .mbr-section-btn {
  color: #232323;
}
.cid-vaGjxS6N9M .card-title,
.cid-vaGjxS6N9M .card-box {
  color: #bed3f9;
}
.cid-vaGjxS6N9M .mbr-text,
.cid-vaGjxS6N9M .link-wrap {
  color: #ffffff;
}
.cid-vaGjxS6N9M .card-box .mbr-text,
.cid-vaGjxS6N9M .mbr-section-btn {
  color: #ffe161;
  text-align: center;
}
.cid-vaGjxS6N9M .round-btn {
  border-radius: 50px !important;
}
.cid-vaGjyEktCR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-vaGjyEktCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaGjyEktCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaGjyEktCR .item {
  padding-bottom: 2rem;
}
.cid-vaGjyEktCR .item-wrapper {
  position: relative;
}
.cid-vaGjyEktCR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vaGjyEktCR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vaGjyEktCR .carousel-control,
.cid-vaGjyEktCR .close {
  background: #1b1b1b;
}
.cid-vaGjyEktCR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vaGjyEktCR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vaGjyEktCR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vaGjyEktCR .carousel-control-next span {
  margin-left: 5px;
}
.cid-vaGjyEktCR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vaGjyEktCR .close::before {
  content: '\e91a';
}
.cid-vaGjyEktCR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vaGjyEktCR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vaGjyEktCR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vaGjyEktCR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vaGjyEktCR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vaGjyEktCR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vaGjyEktCR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vaGjyEktCR .carousel-indicators li.active,
.cid-vaGjyEktCR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vaGjyEktCR .carousel-indicators li::after,
.cid-vaGjyEktCR .carousel-indicators li::before {
  content: none;
}
.cid-vaGjyEktCR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vaGjyEktCR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vaGjyEktCR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vaGjyEktCR .carousel-indicators {
    display: none;
  }
}
.cid-vaGjyEktCR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vaGjyEktCR .carousel-inner > .active {
  display: block;
}
.cid-vaGjyEktCR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vaGjyEktCR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vaGjyEktCR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vaGjyEktCR .carousel-control,
  .cid-vaGjyEktCR .carousel-indicators,
  .cid-vaGjyEktCR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vaGjyEktCR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vaGjyEktCR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vaGjyEktCR .carousel-indicators .active,
.cid-vaGjyEktCR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vaGjyEktCR .carousel-indicators .active {
  background: #fff;
}
.cid-vaGjyEktCR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vaGjyEktCR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vaGjyEktCR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vaGjyEktCR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vaGjyEktCR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vaGjyEktCR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vaGjyEktCR .carousel {
  width: 100%;
}
.cid-vaGjyEktCR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vaGjyEktCR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vaGjyEktCR .modal.fade .modal-dialog,
.cid-vaGjyEktCR .modal.in .modal-dialog {
  transform: none;
}
.cid-vaGjyEktCR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vaGjyEktCR H6 {
  text-align: center;
  color: #fafafa;
}
.cid-vaGjyEktCR H3 {
  color: #e6c63b;
}
.cid-vaGjyEktCR H4 {
  color: #22ffa4;
}
.cid-vaGjyEktCR .mbr-item-subtitle {
  font-size: 1rem;
}
.cid-vaGjyEktCR .round-btn {
  border-radius: 50px !important;
}
.cid-vaGjyEktCR .mbr-section-btn {
  display: flex;
  justify-content: center;
}
.cid-vaGjBTVGZ9 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-vaGjBTVGZ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaGjBTVGZ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaGjBTVGZ9 .item {
  padding-bottom: 2rem;
}
.cid-vaGjBTVGZ9 .item-wrapper {
  position: relative;
}
.cid-vaGjBTVGZ9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-vaGjBTVGZ9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-vaGjBTVGZ9 .carousel-control,
.cid-vaGjBTVGZ9 .close {
  background: #1b1b1b;
}
.cid-vaGjBTVGZ9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-vaGjBTVGZ9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-vaGjBTVGZ9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-vaGjBTVGZ9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-vaGjBTVGZ9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vaGjBTVGZ9 .close::before {
  content: '\e91a';
}
.cid-vaGjBTVGZ9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vaGjBTVGZ9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-vaGjBTVGZ9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vaGjBTVGZ9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vaGjBTVGZ9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vaGjBTVGZ9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-vaGjBTVGZ9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-vaGjBTVGZ9 .carousel-indicators li.active,
.cid-vaGjBTVGZ9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vaGjBTVGZ9 .carousel-indicators li::after,
.cid-vaGjBTVGZ9 .carousel-indicators li::before {
  content: none;
}
.cid-vaGjBTVGZ9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vaGjBTVGZ9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-vaGjBTVGZ9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-vaGjBTVGZ9 .carousel-indicators {
    display: none;
  }
}
.cid-vaGjBTVGZ9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vaGjBTVGZ9 .carousel-inner > .active {
  display: block;
}
.cid-vaGjBTVGZ9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vaGjBTVGZ9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vaGjBTVGZ9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vaGjBTVGZ9 .carousel-control,
  .cid-vaGjBTVGZ9 .carousel-indicators,
  .cid-vaGjBTVGZ9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-vaGjBTVGZ9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-vaGjBTVGZ9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-vaGjBTVGZ9 .carousel-indicators .active,
.cid-vaGjBTVGZ9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-vaGjBTVGZ9 .carousel-indicators .active {
  background: #fff;
}
.cid-vaGjBTVGZ9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-vaGjBTVGZ9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-vaGjBTVGZ9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-vaGjBTVGZ9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-vaGjBTVGZ9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-vaGjBTVGZ9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-vaGjBTVGZ9 .carousel {
  width: 100%;
}
.cid-vaGjBTVGZ9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-vaGjBTVGZ9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-vaGjBTVGZ9 .modal.fade .modal-dialog,
.cid-vaGjBTVGZ9 .modal.in .modal-dialog {
  transform: none;
}
.cid-vaGjBTVGZ9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-vaGjBTVGZ9 H6 {
  text-align: center;
  color: #fafafa;
}
.cid-vaGjBTVGZ9 H3 {
  color: #e6c63b;
}
.cid-vaGjBTVGZ9 H4 {
  color: #22ffa4;
}
.cid-vaGjBTVGZ9 .mbr-item-subtitle {
  font-size: 1rem;
}
.cid-vaGjBTVGZ9 .round-btn {
  border-radius: 50px !important;
}
.cid-vaGjBTVGZ9 .mbr-section-btn {
  display: flex;
  justify-content: center;
}
.cid-vaGjDaihte {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/39-1920x1200.jpg");
}
.cid-vaGjDaihte .mbr-overlay {
  background: #353535;
  opacity: 0.3;
}
.cid-vaGjDaihte img,
.cid-vaGjDaihte .item-img {
  width: 100%;
  height: 100%;
  height: 100px;
  object-fit: cover;
}
.cid-vaGjDaihte .item:focus,
.cid-vaGjDaihte span:focus {
  outline: none;
}
.cid-vaGjDaihte .item-wrapper {
  position: relative;
}
.cid-vaGjDaihte .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vaGjDaihte .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vaGjDaihte .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vaGjDaihte .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vaGjDaihte .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vaGjDaihte .mbr-section-btn {
  margin-top: auto !important;
  text-align: center !important;
}
.cid-vaGjDaihte .mbr-section-title {
  color: #00ffe6;
  text-align: left;
  margin-left: 70px;
}
@media (max-width: 1000px) {
  .cid-vaGjDaihte .mbr-section-title {
    text-align: center;
    margin-left: 0 !important;
  }
}
.cid-vaGjDaihte .mbr-section-title .mbr-text,
.cid-vaGjDaihte .mbr-section-title .mbr-section-btn {
  text-align: left;
  color: #646161;
}
.cid-vaGjDaihte .item-title {
  text-align: center;
  color: #353535;
}
.cid-vaGjDaihte .item-subtitle {
  text-align: center;
  color: #22a5e5;
}
.cid-vaGjDaihte .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-vaGjDaihte .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vaGjDaihte .embla__button--next,
.cid-vaGjDaihte .embla__button--prev {
  display: flex;
}
.cid-vaGjDaihte .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vaGjDaihte .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vaGjDaihte .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-vaGjDaihte .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vaGjDaihte .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vaGjDaihte .embla__button {
    top: auto;
  }
}
.cid-vaGjDaihte .embla {
  position: relative;
  width: 100%;
}
.cid-vaGjDaihte .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vaGjDaihte .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vaGjDaihte .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vaGjDaihte .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-vaGjDaihte .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-vaGjDaihte .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-vaGjDaihte .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-vaGjDaihte .card-text {
  color: #2bd286;
  text-align: center;
}
.cid-vaGjDaihte .card-title,
.cid-vaGjDaihte .card-box {
  color: #e43f3f;
}
.cid-vaGjDaihte .btn {
  border-radius: 50px;
}
.cid-vaGjDaihte .embla[data-cards="1"] .embla__container,
.cid-vaGjDaihte .embla[data-cards="2"] .embla__container {
  margin-left: auto;
  margin-right: auto;
}
.cid-vaFzvBx7Pl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vaFzvBx7Pl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaFzvBx7Pl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaFzvBx7Pl .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-vaFzvBx7Pl .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vaFzvBx7Pl .row {
    text-align: center;
  }
  .cid-vaFzvBx7Pl .row > div {
    margin: auto;
  }
  .cid-vaFzvBx7Pl .social-row {
    justify-content: center;
  }
}
.cid-vaFzvBx7Pl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vaFzvBx7Pl .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vaFzvBx7Pl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vaFzvBx7Pl .list {
    margin-bottom: 0rem;
  }
}
.cid-vaFzvBx7Pl .mbr-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-vaFzvBx7Pl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vaFzvBx7Pl .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vaFzvBx7Pl div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vaFzvBx7Pl H3 {
  text-align: center;
}
.cid-vaFzvBx7Pl .neon-text {
  margin-top: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vaFzvBx7Pl .copyright {
  text-align: center;
}
.cid-vaFzvC3vbG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaFzvC3vbG nav.navbar {
  position: fixed;
}
.cid-vaFzvC3vbG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaFzvC3vbG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaFzvC3vbG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaFzvC3vbG .dropdown-item:hover,
.cid-vaFzvC3vbG .dropdown-item:focus {
  background: #07f40d !important;
  color: white !important;
}
.cid-vaFzvC3vbG .dropdown-item:hover span {
  color: white;
}
.cid-vaFzvC3vbG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaFzvC3vbG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaFzvC3vbG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaFzvC3vbG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaFzvC3vbG .nav-link {
  position: relative;
}
.cid-vaFzvC3vbG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vaFzvC3vbG .container {
    flex-wrap: wrap;
  }
}
.cid-vaFzvC3vbG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vaFzvC3vbG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vaFzvC3vbG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaFzvC3vbG .dropdown-menu,
.cid-vaFzvC3vbG .navbar.opened {
  background: #232323 !important;
}
.cid-vaFzvC3vbG .nav-item:focus,
.cid-vaFzvC3vbG .nav-link:focus {
  outline: none;
}
.cid-vaFzvC3vbG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaFzvC3vbG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaFzvC3vbG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaFzvC3vbG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaFzvC3vbG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaFzvC3vbG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaFzvC3vbG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-vaFzvC3vbG .navbar.opened {
  transition: all 0.3s;
}
.cid-vaFzvC3vbG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaFzvC3vbG .navbar .navbar-logo img {
  width: auto;
}
.cid-vaFzvC3vbG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaFzvC3vbG .navbar.collapsed {
  justify-content: center;
}
.cid-vaFzvC3vbG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaFzvC3vbG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaFzvC3vbG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vaFzvC3vbG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaFzvC3vbG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaFzvC3vbG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaFzvC3vbG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaFzvC3vbG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaFzvC3vbG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaFzvC3vbG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaFzvC3vbG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaFzvC3vbG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaFzvC3vbG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaFzvC3vbG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaFzvC3vbG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaFzvC3vbG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaFzvC3vbG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaFzvC3vbG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaFzvC3vbG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaFzvC3vbG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaFzvC3vbG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaFzvC3vbG .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaFzvC3vbG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaFzvC3vbG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaFzvC3vbG .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-vaFzvC3vbG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaFzvC3vbG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaFzvC3vbG .dropdown-item.active,
.cid-vaFzvC3vbG .dropdown-item:active {
  background-color: transparent;
}
.cid-vaFzvC3vbG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaFzvC3vbG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaFzvC3vbG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaFzvC3vbG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-vaFzvC3vbG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaFzvC3vbG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaFzvC3vbG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaFzvC3vbG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaFzvC3vbG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaFzvC3vbG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-vaFzvC3vbG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaFzvC3vbG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaFzvC3vbG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaFzvC3vbG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaFzvC3vbG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaFzvC3vbG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaFzvC3vbG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaFzvC3vbG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaFzvC3vbG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaFzvC3vbG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaFzvC3vbG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaFzvC3vbG .navbar {
    height: 70px;
  }
  .cid-vaFzvC3vbG .navbar.opened {
    height: auto;
  }
  .cid-vaFzvC3vbG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaFzvC3vbG .neon-text {
  margin-left: 15px;
  background: linear-gradient(90deg, #ff87f3, #74f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vaFzvC3vbG .rounder {
  border-radius: 30px;
}
