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: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.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: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !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: #205ac5 !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: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #6592e6 !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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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='%236592e6' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-suQhwKwEyC {
  position: relative;
  background-color: transparent;
}
.cid-suQhwKwEyC.mbr-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.cid-suQhwKwEyC .slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.cid-suQhwKwEyC .slide-backup,
.cid-suQhwKwEyC .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.cid-suQhwKwEyC .slide-backup {
  z-index: 1;
}
.cid-suQhwKwEyC .slide-item {
  opacity: 0;
  z-index: 2;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.cid-suQhwKwEyC .item-1 {
  animation-name: blurAnim1;
}
.cid-suQhwKwEyC .item-2 {
  animation-name: blurAnim2;
}
.cid-suQhwKwEyC .item-3 {
  animation-name: blurAnim3;
}
.cid-suQhwKwEyC .content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.cid-suQhwKwEyC.mbr-fullscreen .content-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.cid-suQhwKwEyC .text-slide {
  position: relative;
  opacity: 0;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.cid-suQhwKwEyC .t-item-1 {
  animation-name: flip1;
}
.cid-suQhwKwEyC .t-item-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: flip2;
}
.cid-suQhwKwEyC .t-item-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: flip3;
}
@keyframes fadeAnim1 {
  0%,
  33% {
    opacity: 1;
  }
  37%,
  100% {
    opacity: 0;
  }
  0%,
  28% {
    opacity: 1;
  }
  33.33%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeAnim2 {
  0%,
  33% {
    opacity: 0;
  }
  37%,
  66% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
  }
  0%,
  30% {
    opacity: 0;
  }
  33.33%,
  61% {
    opacity: 1;
  }
  66.66%,
  100% {
    opacity: 0;
  }
}
@keyframes fadeAnim3 {
  0%,
  66% {
    opacity: 0;
  }
  70%,
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  0%,
  63% {
    opacity: 0;
  }
  66.66%,
  95% {
    opacity: 1;
  }
}
@keyframes zoomAnim1 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 1;
    transform: scale(1.15);
  }
  37%,
  100% {
    opacity: 0;
  }
}
@keyframes zoomAnim2 {
  0%,
  33% {
    opacity: 0;
    transform: scale(1);
  }
  37% {
    opacity: 1;
  }
  66% {
    opacity: 1;
    transform: scale(1.15);
  }
  70%,
  100% {
    opacity: 0;
  }
}
@keyframes zoomAnim3 {
  0%,
  66% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  96% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideAnim1 {
  0%,
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  33% {
    transform: translateX(-100%);
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
  }
}
@keyframes slideAnim2 {
  0%,
  33% {
    opacity: 0;
    transform: translateX(100%);
  }
  37%,
  63% {
    opacity: 1;
    transform: translateX(0);
  }
  66% {
    transform: translateX(-100%);
    opacity: 1;
  }
  67%,
  100% {
    opacity: 0;
  }
}
@keyframes slideAnim3 {
  0%,
  66% {
    opacity: 0;
    transform: translateX(100%);
  }
  70%,
  96% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    opacity: 1;
  }
}
@keyframes blurAnim1 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  5%,
  33% {
    opacity: 1;
    filter: blur(0);
  }
  37% {
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurAnim2 {
  0%,
  33% {
    opacity: 0;
    filter: blur(10px);
  }
  37%,
  66% {
    opacity: 1;
    filter: blur(0);
  }
  70% {
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes blurAnim3 {
  0%,
  66% {
    opacity: 0;
    filter: blur(10px);
  }
  70%,
  96% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
    filter: blur(5px);
  }
}
@keyframes panAnim1 {
  0% {
    opacity: 1;
    transform: scale(1.1) translateX(-2%);
  }
  33% {
    opacity: 1;
    transform: scale(1.1) translateX(2%);
  }
  37%,
  100% {
    opacity: 0;
  }
}
@keyframes panAnim2 {
  0%,
  33% {
    opacity: 0;
    transform: scale(1.1) translateX(-2%);
  }
  37%,
  66% {
    opacity: 1;
    transform: scale(1.1) translateX(2%);
  }
  70%,
  100% {
    opacity: 0;
  }
}
@keyframes panAnim3 {
  0%,
  66% {
    opacity: 0;
    transform: scale(1.1) translateX(-2%);
  }
  70%,
  96% {
    opacity: 1;
    transform: scale(1.1) translateX(2%);
  }
  100% {
    opacity: 0;
  }
}
@keyframes revealAnim1 {
  0%,
  30% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  33% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  37%,
  100% {
    opacity: 0;
  }
}
@keyframes revealAnim2 {
  0%,
  33% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  37%,
  63% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  66% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  70%,
  100% {
    opacity: 0;
  }
}
@keyframes revealAnim3 {
  0%,
  66% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  70%,
  96% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes textFade1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  5%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
  }
}
@keyframes textFade2 {
  0%,
  33% {
    opacity: 0;
    transform: translateY(20px);
  }
  38%,
  61% {
    opacity: 1;
    transform: translateY(0);
  }
  66% {
    opacity: 0;
  }
}
@keyframes textFade3 {
  0%,
  66% {
    opacity: 0;
    transform: translateY(20px);
  }
  71%,
  95% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
.cid-suQhwKwEyC .mbr-overlay {
  z-index: 5;
}
@keyframes slideUp1 {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  5%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 0;
  }
  5%,
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  30%,
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes slideUp2 {
  0%,
  33% {
    opacity: 0;
    transform: translateY(30px);
  }
  38%,
  61% {
    opacity: 1;
    transform: translateY(0);
  }
  66% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 0;
  }
  38%,
  58% {
    opacity: 1;
    transform: translateY(0);
  }
  63%,
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes slideUp3 {
  0%,
  66% {
    opacity: 0;
    transform: translateY(30px);
  }
  71%,
  95% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
  71%,
  92% {
    opacity: 1;
    transform: translateY(0);
  }
  97%,
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes zoomIn1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  5%,
  28% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomIn2 {
  0%,
  33% {
    opacity: 0;
    transform: scale(0.5);
  }
  38%,
  61% {
    opacity: 1;
    transform: scale(1);
  }
  66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomIn3 {
  0%,
  66% {
    opacity: 0;
    transform: scale(0.5);
  }
  71%,
  95% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes typewriter1 {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  5%,
  28% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes typewriter2 {
  0%,
  33% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  38%,
  61% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes typewriter3 {
  0%,
  66% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  71%,
  95% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes flip1 {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  5%,
  28% {
    opacity: 1;
    transform: rotateX(0deg);
  }
  33% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  100% {
    opacity: 0;
  }
}
@keyframes flip2 {
  0%,
  33% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  38%,
  61% {
    opacity: 1;
    transform: rotateX(0deg);
  }
  66% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  100% {
    opacity: 0;
  }
}
@keyframes flip3 {
  0%,
  66% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  71%,
  95% {
    opacity: 1;
    transform: rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: rotateX(90deg);
  }
}
.cid-suQhwKwEyC H1 {
  color: #ffffff;
}
.cid-suQhwKwEyC P {
  color: #ffffff;
}
.cid-H6x4v5zJbC {
  padding-top: calc(6 * 1rem);
  padding-bottom: calc(6 * 1rem);
  background-color: #0d0d0d;
  overflow: visible !important;
  position: relative;
}
.cid-H6x4v5zJbC .art-row {
  position: relative;
}
.cid-H6x4v5zJbC .left-sticky-column {
  position: relative;
}
.cid-H6x4v5zJbC .title-wrapper {
  box-sizing: border-box;
}
.cid-H6x4v5zJbC .art-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e8c97a;
  font-weight: 700;
  display: block;
}
.cid-H6x4v5zJbC .art-title {
  color: #ffffff;
  line-height: 1.2;
}
.cid-H6x4v5zJbC .accent-line {
  width: 60px;
  height: 4px;
  background-color: #e8c97a;
  border-radius: 2px;
}
.cid-H6x4v5zJbC .article-body {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}
.cid-H6x4v5zJbC .art-lead {
  color: #ffffff;
  font-size: 1.25rem !important;
  line-height: 1.6;
}
.cid-H6x4v5zJbC .has-dropcap .art-lead::first-letter {
  font-size: 3.8rem;
  font-weight: 900;
  float: left;
  line-height: 0.85;
  margin-right: 12px;
  margin-top: 4px;
  color: #e8c97a;
}
.cid-H6x4v5zJbC .modern-quote {
  position: relative;
  padding: 1.5rem 2rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #e8c97a;
  border-radius: 0 8px 8px 0;
}
.cid-H6x4v5zJbC .modern-quote p {
  font-style: italic;
  color: #ffffff !important;
  font-size: 1.2rem !important;
  margin-bottom: 0;
}
.cid-H6x4v5zJbC .modern-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(232, 201, 122, 0.1);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-H6x4v5zJbC {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .cid-H6x4v5zJbC .title-wrapper {
    position: static !important;
    width: 100% !important;
  }
  .cid-H6x4v5zJbC .modern-quote {
    padding: 1.2rem 1.5rem;
  }
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-WEQSJSMu9q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #16161a;
}
.cid-WEQSJSMu9q .container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-WEQSJSMu9q .vn-cf1-head {
  max-width: 44rem;
  margin: 0 auto 3.2rem;
  text-align: center;
  color: #22a5e5;
}
.cid-WEQSJSMu9q .vn-cf1-eyebrow {
  margin: 0 0 .7rem;
  color: #e63946;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cid-WEQSJSMu9q .vn-cf1-title {
  margin: 0 0 1rem;
  color: #22a5e5;
}
.cid-WEQSJSMu9q .vn-cf1-lead {
  margin: 0;
  opacity: .72;
}
.cid-WEQSJSMu9q .vn-cf1-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
}
.cid-WEQSJSMu9q .vn-cf1-stage:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 10px;
  border-radius: 6px;
}
.cid-WEQSJSMu9q .vn-cf1-track {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1500px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  touch-action: pan-y;
}
.cid-WEQSJSMu9q .vn-cf1-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 330px;
  max-width: 86%;
  height: 100%;
  margin-left: -165px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 0.68, 0.3, 1), opacity 0.4s ease;
  will-change: transform;
  cursor: pointer;
}
.cid-WEQSJSMu9q .vn-cf1-card.is-front {
  cursor: default;
}
.cid-WEQSJSMu9q .vn-cf1-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  color: #16161a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18), 0 26px 50px -14px rgba(0, 0, 0, 0.6);
}
.cid-WEQSJSMu9q .vn-cf1-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.cid-WEQSJSMu9q .vn-cf1-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-WEQSJSMu9q .vn-cf1-body {
  flex: 0 0 auto;
  padding: 1.3rem 1.4rem 1.5rem;
}
.cid-WEQSJSMu9q .vn-cf1-label {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .2rem .65rem;
  border-radius: 99px;
  background: rgba(230, 57, 70, 0.14);
  color: #e63946;
  font-size: .74rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cid-WEQSJSMu9q .vn-cf1-card-title {
  margin: 0 0 .45rem;
  color: #16161a;
}
.cid-WEQSJSMu9q .vn-cf1-text {
  margin: 0 0 .9rem;
  opacity: .74;
}
.cid-WEQSJSMu9q .mbr-section-btn {
  margin: 0;
}
.cid-WEQSJSMu9q .vn-cf1-btn,
.cid-WEQSJSMu9q .mbr-section-btn .btn {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .cid-WEQSJSMu9q .vn-cf1-arrow:hover {
    border-color: #e63946;
    background: #e63946;
    color: #fff;
  }
}
.cid-WEQSJSMu9q .vn-cf1-reflect {
  display: none;
}
.cid-WEQSJSMu9q .vn-cf1-reflect {
  display: block;
  height: 124.8px;
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.cid-WEQSJSMu9q .vn-cf1-reflect img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cid-WEQSJSMu9q .vn-cf1-card {
  height: auto;
}
.cid-WEQSJSMu9q .vn-cf1-inner {
  height: 480px;
}
.cid-WEQSJSMu9q .vn-cf1-track {
  margin-bottom: 124.8px;
}
.cid-WEQSJSMu9q.vn-view-grid .vn-cf1-reflect {
  display: none !important;
}
.cid-WEQSJSMu9q .vn-cf1-nav {
  display: flex;
  gap: .8rem;
  margin-top: 2.2rem;
}
.cid-WEQSJSMu9q .vn-cf1-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(34, 165, 229, 0.26);
  border-radius: 50%;
  background: transparent;
  color: #22a5e5;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cid-WEQSJSMu9q .vn-cf1-arrow svg {
  width: 21px;
  height: 21px;
}
.cid-WEQSJSMu9q .vn-cf1-count {
  margin-top: 1rem;
  color: #22a5e5;
  opacity: .55;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.cid-WEQSJSMu9q .vn-cf1-dots {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.cid-WEQSJSMu9q .vn-cf1-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 165, 229, 0.28);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.cid-WEQSJSMu9q .vn-cf1-dot.is-on {
  background: #e63946;
  transform: scale(1.35);
}
.cid-WEQSJSMu9q.vn-view-grid .vn-cf1-track {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 2rem;
  height: auto !important;
  perspective: none !important;
}
.cid-WEQSJSMu9q.vn-view-grid .vn-cf1-card {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-left: 0 !important;
  width: 330px;
  max-width: 100%;
  height: 480px;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: default;
}
.cid-WEQSJSMu9q.vn-view-grid .vn-cf1-nav,
.cid-WEQSJSMu9q.vn-view-grid .vn-cf1-dots,
.cid-WEQSJSMu9q.vn-view-grid .vn-cf1-count {
  display: none !important;
}
@media (max-width: 575px) {
  .cid-WEQSJSMu9q .vn-cf1:not(.vn-view-grid) .vn-cf1-track {
    height: 108vw;
    min-height: 380px;
  }
  .cid-WEQSJSMu9q .vn-cf1-body {
    padding: 1.1rem 1.1rem 1.3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cid-WEQSJSMu9q .vn-cf1-card {
    transition-duration: .01ms;
  }
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-vtkUtZQeQI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vtkUtZQeQI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vtkUtZQeQI .mbr-text {
  color: #ffffff;
}
.cid-vtkTfL8LpI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-vtkRPx1xhV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-vtkRPx1xhV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vtkRPx1xhV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vtkRPx1xhV .mbr-section-title {
  color: #ffffff;
}
.cid-vtkRPx1xhV .mbr-text,
.cid-vtkRPx1xhV .mbr-section-btn {
  color: #ffffff;
}
.cid-vtkOPv2Q47 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-iwD3fevc8a {
  background-color: #000000;
}
.cid-iwD3fevc8a .spot-header {
  position: relative;
  overflow: hidden !important;
  background-size: cover;
  background-position: center;
}
.cid-iwD3fevc8a .container-wrap {
  position: relative;
  z-index: 5;
}
.cid-iwD3fevc8a .spotlight-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: screen;
  overflow: hidden;
}
.cid-iwD3fevc8a .spot {
  position: absolute;
  width: var(--spot-size, 60vw);
  height: var(--spot-size, 60vw);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  will-change: transform;
}
.cid-iwD3fevc8a #s1 {
  top: -20%;
  left: -20%;
  animation: moveSpot1 linear infinite;
}
.cid-iwD3fevc8a #s2 {
  bottom: -20%;
  right: -20%;
  animation: moveSpot2 linear infinite;
}
.cid-iwD3fevc8a #s3 {
  top: 40%;
  left: 40%;
  animation: moveSpot3 linear infinite;
}
@keyframes moveSpot1 {
  0% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(80vw, 30vh);
  }
  66% {
    transform: translate(20vw, 70vh);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveSpot2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-80vw, -50vh);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes moveSpot3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(25vw);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(25vw);
  }
}
.cid-iwD3fevc8a .mbr-overlay {
  z-index: 1;
}
.cid-iwD3fevc8a h1,
.cid-iwD3fevc8a h2,
.cid-iwD3fevc8a p,
.cid-iwD3fevc8a .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-vtqwORpb5v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-oRRToUFElA {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: visible;
  background-image: url("../../../assets/images/mbr-1920x1090.jpg");
}
.cid-oRRToUFElA .glass-master {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 3rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.1s ease-out;
  border-radius: var(--g-radius);
  border: var(--g-border) solid var(--g-border-color);
  background: transparent !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(var(--g-blur));
  -webkit-backdrop-filter: blur(var(--g-blur));
}
.cid-oRRToUFElA .glass-master::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--g-color) !important;
  opacity: var(--g-opacity);
  z-index: -1;
}
.cid-oRRToUFElA .is-circle .inner-content {
  padding: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-oRRToUFElA .glass-master {
    position: relative !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    height: auto !important;
    border-radius: 2rem !important;
    margin: 2rem 0;
  }
}
.cid-oRRToUFElA .mbr-section-title,
.cid-oRRToUFElA .mbr-text,
.cid-oRRToUFElA .mbr-section-btn {
  text-align: center;
  position: relative;
  z-index: 2;
  color: #ffffff !important;
}
.cid-oRRToUFElA .mbr-section-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-oRRToUFElA H1 {
  color: #d70081;
}
.cid-g75EUebhUk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-g75EUebhUk .vn-flags {
  display: none;
}
.cid-g75EUebhUk .card-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #000000;
  padding: 32px;
  border-radius: 48px;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper {
    display: block;
    padding: 18px;
  }
}
.cid-g75EUebhUk .card-wrapper .progress-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 3;
  background-color: rgba(230, 198, 59, 0.12);
}
.cid-g75EUebhUk .card-wrapper .progress-line span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  will-change: transform;
  background-image: linear-gradient(90deg, #e43f3f, #e6c63b);
}
.cid-g75EUebhUk .card-wrapper .gradient-wrapper {
  position: absolute;
  left: -150px;
  bottom: -400px;
  width: 500px;
  height: 500px;
  background-image: linear-gradient(-90deg, #e43f3f, #e6c63b 70%);
  border-radius: 100%;
  filter: blur(6rem);
  transform: translate(var(--vnA1X, 0px), var(--vnA1Y, 0px));
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .gradient-wrapper {
    width: 400px;
    height: 400px;
  }
}
.cid-g75EUebhUk .card-wrapper .card {
  justify-content: flex-start;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper {
  position: relative;
  z-index: 1;
  width: 52%;
  padding: 0 32px 0 0;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .content-wrapper {
    padding: 0;
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .label-wrapper {
  margin-bottom: 22px;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2ba7ff, #e6c63b 50%, #fe881b);
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .article-lead {
  margin-bottom: 22px;
  font-weight: 500;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .article-body {
  margin-bottom: 0;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .article-body::first-letter {
  float: left;
  margin: 4px 12px 0 0;
  font-size: 4.2em;
  font-weight: 700;
  line-height: .78;
  color: #e43f3f;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .mbr-section-btn {
  margin-top: 48px;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .content-wrapper .mbr-section-btn {
    margin-top: 22px;
  }
}
.cid-g75EUebhUk .card-wrapper .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-g75EUebhUk .card-wrapper .image-wrapper {
  position: relative;
  z-index: 1;
  width: 44%;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-g75EUebhUk .card-wrapper .image-wrapper .image-frame {
  position: relative;
  overflow: hidden;
  height: 480px;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .image-wrapper .image-frame {
    height: 300px;
  }
}
.cid-g75EUebhUk .card-wrapper .image-wrapper .image-shutter {
  display: none;
}
.cid-g75EUebhUk .card-wrapper .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--vnA1IY, 0px), 0) scale(1.14);
  will-change: transform;
}
.cid-g75EUebhUk .card-wrapper .image-wrapper .article-caption {
  margin: 14px 0 0;
  padding-left: 12px;
  border-left: 3px solid #e6c63b;
  opacity: .75;
}
.cid-g75EUebhUk .card-wrapper .extras-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-g75EUebhUk .card-wrapper .quote-wrapper {
  position: relative;
  margin-top: 48px;
  padding: 8px 0 8px 72px;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .quote-wrapper {
    margin-top: 32px;
    padding-left: 48px;
  }
}
.cid-g75EUebhUk .card-wrapper .quote-wrapper::before {
  content: "\201E";
  position: absolute;
  left: 0;
  top: -18px;
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
  color: #e43f3f;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .quote-wrapper::before {
    font-size: 4rem;
    top: -8px;
  }
}
.cid-g75EUebhUk .card-wrapper .quote-wrapper .article-quote {
  margin-bottom: 8px;
  font-style: italic;
}
.cid-g75EUebhUk .card-wrapper .quote-wrapper .article-quote-src {
  margin-bottom: 0;
  opacity: .7;
}
.cid-g75EUebhUk .card-wrapper .stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .cid-g75EUebhUk .card-wrapper .stats-wrapper {
    margin-top: 32px;
    gap: 18px;
  }
}
.cid-g75EUebhUk .card-wrapper .stats-wrapper .stat-item {
  flex: 1 1 150px;
  padding-left: 16px;
  border-left: 3px solid #e6c63b;
}
.cid-g75EUebhUk .card-wrapper .stats-wrapper .stat-num {
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #e6c63b;
}
.cid-g75EUebhUk .card-wrapper .stats-wrapper .stat-label {
  margin-bottom: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}
.cid-g75EUebhUk .card-wrapper .vn-reveal {
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff calc(var(--vnA1P, 100%) - 10%), #232323 calc(var(--vnA1P, 100%) + 10%), #232323 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-g75EUebhUk .card-wrapper .content-wrapper:focus-within .vn-reveal,
.cid-g75EUebhUk .card-wrapper .vn-reveal[contenteditable="true"],
.cid-g75EUebhUk .card-wrapper .vn-reveal:focus {
  background-image: none;
  -webkit-text-fill-color: #ffffff;
}
.cid-g75EUebhUk .mbr-label,
.cid-g75EUebhUk .label-wrapper {
  color: #1a0b54;
}
.cid-g75EUebhUk .mbr-section-title {
  color: #1a0b54;
}
.cid-g75EUebhUk .mbr-text {
  color: #a997ce;
}
.cid-g75EUebhUk .article-lead {
  color: #ffffff;
}
.cid-g75EUebhUk .article-quote {
  color: #e6c63b;
}
.cid-g75EUebhUk.vn-live .quote-wrapper,
.cid-g75EUebhUk.vn-live .stats-wrapper {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cid-g75EUebhUk.vn-live .stats-wrapper {
  transition-delay: .08s;
}
.cid-g75EUebhUk.vn-live .quote-wrapper.vn-in,
.cid-g75EUebhUk.vn-live .stats-wrapper.vn-in {
  opacity: 1;
  transform: none;
}
.cid-g75EUebhUk.vn-live .image-frame {
  clip-path: inset(100% 0 0 0 round 32px);
  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.cid-g75EUebhUk.vn-live .image-shutter {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateY(0);
  background-image: linear-gradient(160deg, #e43f3f, #e6c63b);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1) 0.25s;
}
.cid-g75EUebhUk.vn-live .image-wrapper.vn-in .image-frame {
  clip-path: inset(0 0 0 0 round 32px);
}
.cid-g75EUebhUk.vn-live .image-wrapper.vn-in .image-shutter {
  transform: translateY(-101%);
}
.cid-g75EUebhUk .mbr-section-title,
.cid-g75EUebhUk .mbr-section-btn {
  color: #ffffff;
}
.cid-g75EUebhUk .article-body {
  color: #ffffff;
}
.cid-g75EUebhUk .stat-num {
  color: #ff9966;
}
.cid-g75EUebhUk .stat-label {
  color: #ffffff;
}
.cid-g75EUebhUk .article-caption {
  color: #ffffff;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-vtqBAPV14r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vtqBAPV14r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vtqBAPV14r .mbr-text {
  color: #ffffff;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-vtqCHFcxNN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
.cid-7fSddWL99d {
  z-index: 1000;
  width: 100%;
  font-size: 0.67em !important;
}
.cid-7fSddWL99d .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-7fSddWL99d .dropdown-menu {
  padding: 0;
}
.cid-7fSddWL99d .dropdown-item {
  padding: 5px 0.4em 5px 0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .dropdown-item {
    text-align: left !important;
  }
}
.cid-7fSddWL99d .dropdown-item:hover {
  background-position: right !important;
}
.cid-7fSddWL99d .dropdown-item:hover:after {
  color: #ffffff;
}
.cid-7fSddWL99d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-7fSddWL99d .nav-link {
  position: relative;
}
.cid-7fSddWL99d .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}
.cid-7fSddWL99d .dropdown-menu,
.cid-7fSddWL99d .navbar.opened {
  background: #ffe161 !important;
}
.cid-7fSddWL99d .nav-item:focus,
.cid-7fSddWL99d .nav-link:focus {
  outline: none;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-7fSddWL99d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-7fSddWL99d .navbar {
  min-height: 122px;
  transition: all 0.3s;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-7fSddWL99d .navbar.opened {
  transition: all 0.3s;
}
.cid-7fSddWL99d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-7fSddWL99d .navbar .navbar-logo img {
  width: auto;
}
.cid-7fSddWL99d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-7fSddWL99d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-7fSddWL99d .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-7fSddWL99d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-7fSddWL99d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-7fSddWL99d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-7fSddWL99d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-7fSddWL99d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-7fSddWL99d .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar {
    min-height: 80px;
  }
}
.cid-7fSddWL99d .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-7fSddWL99d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-7fSddWL99d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-7fSddWL99d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-brand {
    min-height: 69px;
  }
}
.cid-7fSddWL99d .dropdown-item.active,
.cid-7fSddWL99d .dropdown-item:active {
  background-color: transparent;
}
.cid-7fSddWL99d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-7fSddWL99d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffe161;
}
.cid-7fSddWL99d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-7fSddWL99d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-7fSddWL99d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-7fSddWL99d button.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-7fSddWL99d button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-7fSddWL99d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-7fSddWL99d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
.cid-7fSddWL99d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d .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-7fSddWL99d .navbar {
    height: 70px;
  }
  .cid-7fSddWL99d .navbar.opened {
    height: auto;
  }
  .cid-7fSddWL99d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-7fSddWL99d .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #ffe161;
  background: rgba(255, 225, 97, 0.3);
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .navbar-short {
    min-height: 70px;
  }
}
.cid-7fSddWL99d .container-fluid {
  flex-wrap: nowrap;
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .container-fluid {
    padding: 0 3px;
  }
}
.cid-7fSddWL99d .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-7fSddWL99d .navbar-nav {
  display: flex !important;
  width: 300px;
  flex-shrink: 0;
  overflow: visible;
}
.cid-7fSddWL99d .navbar-nav .nav-item {
  margin: 0 !important;
  width: 100%;
  text-align: left;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 2px 0 !important;
  transition: 0.3s all;
  opacity: 1;
  font-size: 24px;
  color: #ffffff;
  justify-content: flex-start;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:focus,
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #4479d9 !important;
  background-color: rgba(68, 121, 217, 0.3) !important;
}
.cid-7fSddWL99d .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-7fSddWL99d .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-7fSddWL99d button.btn_offcanvas {
  width: 70px;
  height: 80px;
  border-radius: 15px;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #000000, #232323);
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-7fSddWL99d button.btn_offcanvas:hover {
  transform: scale(1.1);
}
.cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .btn_offcanvas .menu-text {
  font-size: 12px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 8px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  top: 14px;
}
.cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
  top: 20px;
}
.cid-7fSddWL99d .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  transition: all 0.3s;
  opacity: 1 !important;
  background: linear-gradient(145deg, #000000, #232323);
  box-shadow: 10px 10px 19px #232323, -10px -10px 19px #23272b;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  z-index: 1000;
  margin-right: 10px;
}
.cid-7fSddWL99d .btn-close:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span {
  position: absolute;
  right: 2px;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(1) {
  display: none;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(2) {
  top: 11px;
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-7fSddWL99d .btn-close .hamburger-offcanvas span:nth-child(4) {
  display: none;
}
.cid-7fSddWL99d .offcanvas-end {
  right: 0 !important;
  left: auto !important;
  transform: translateX(100%);
}
.cid-7fSddWL99d .offcanvas-start {
  left: 0 !important;
  right: auto !important;
  transform: translateX(-100%);
}
.cid-7fSddWL99d .offcanvas.show {
  transform: translateX(0);
}
.cid-7fSddWL99d .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: none !important;
  border-right: none !important;
  visibility: visible !important;
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-7fSddWL99d .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 40px 40px 40px 220px !important;
  width: 100%;
  margin-left: auto;
  text-align: left;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  height: 100vh;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: none !important;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(68, 121, 217, 0.3) 0%, rgba(35, 84, 173, 0.3) 100%) !important;
  background-size: 100% 100% !important;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body {
    width: 100% !important;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .offcanvas-body {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding: 20px 20px 20px 80px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.cid-7fSddWL99d .offcanvas-body .offcanvas_head_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand {
  min-height: 70px;
  padding: 0 !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand .navbar-logo {
    margin-right: 0.5rem;
  }
}
.cid-7fSddWL99d .offcanvas-body .navbar-brand img {
  height: 70px !important;
}
@media (max-width: 575px) {
  .cid-7fSddWL99d .offcanvas-body .navbar-brand img {
    height: 60px !important;
  }
}
.cid-7fSddWL99d .offcanvas-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #232323, #6766ff, #000611, #232323);
  background-size: 300% 300%;
  animation: colorShift 16s ease infinite;
  opacity: 0.3;
}
.cid-7fSddWL99d .offcanvas-body {
  background: transparent !important;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards, colorShiftBody 16s 0.6s ease infinite !important;
}
@keyframes colorShiftBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 3px, transparent 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cid-7fSddWL99d .offcanvas-end .offcanvas-body {
  clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 40px 40px 40px 200px !important;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas-body {
  margin-left: 0;
  margin-right: auto;
  padding: 40px 200px 40px 40px !important;
  width: 100% !important;
  clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
  text-align: left;
}
.cid-7fSddWL99d .offcanvas-end.show .offcanvas-body {
  animation: slideInSkew 0.6s ease-out forwards;
}
.cid-7fSddWL99d .offcanvas-start.show .offcanvas-body {
  animation: slideInSkewLeft 0.6s ease-out forwards;
}
@keyframes slideInSkew {
  0% {
    clip-path: polygon(calc(23% + 10%) 0%, 100% 0%, 100% 100%, calc(0% + 10%) 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
@keyframes slideInSkewLeft {
  0% {
    clip-path: polygon(0% 0%, calc(100% - 23% - 10%) 0%, calc(100% - 0% - 10%) 100%, 0% 100%);
    opacity: 0.5;
  }
  100% {
    clip-path: polygon(0% 0%, calc(100% - 23%) 0%, calc(100% - 0%) 100%, 0% 100%);
    opacity: 1;
  }
}
.cid-7fSddWL99d .offcanvas_head,
.cid-7fSddWL99d .offcanvas_link,
.cid-7fSddWL99d .social-container,
.cid-7fSddWL99d .offcanvas_btn {
  position: relative;
  z-index: 10;
  padding-left: 20px;
  transform: translateX(20px);
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head,
.cid-7fSddWL99d .offcanvas-start .offcanvas_link,
.cid-7fSddWL99d .offcanvas-start .social-container {
  padding-right: 20px;
}
.cid-7fSddWL99d .mbr-text {
  color: #ffffff;
  margin-top: 20px;
  padding-right: 7%;
}
.cid-7fSddWL99d .modal-backdrop.show {
  opacity: 0.8;
}
.cid-7fSddWL99d .offcanvas_link {
  width: 100%;
  overflow: visible;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 0;
  position: relative;
}
.cid-7fSddWL99d ::-webkit-scrollbar {
  width: 1em;
}
.cid-7fSddWL99d ::-webkit-scrollbar-track {
  background-color: #232323;
}
.cid-7fSddWL99d ::-webkit-scrollbar-thumb {
  background-color: #535B6D;
  border-radius: 1em;
}
.cid-7fSddWL99d .social-container {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .social-container {
    padding-top: 40px;
  }
}
.cid-7fSddWL99d .social-title {
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px !important;
}
.cid-7fSddWL99d .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.cid-7fSddWL99d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff6666, #e43f3f);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-7fSddWL99d .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-7fSddWL99d .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-7fSddWL99d .soc-item:hover {
  transform: translateY(-3px);
}
.cid-7fSddWL99d .soc-item:hover:before {
  opacity: 1;
}
.cid-7fSddWL99d .soc-item a {
  animation: none;
}
.cid-7fSddWL99d .offcanvas_btn {
  margin-top: 10px;
}
.cid-7fSddWL99d .offcanvas_btn .mbr-section-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  transition: 0.3s all;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.cid-7fSddWL99d .offcanvas_btn .btn-footer-link:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 30px;
  width: auto;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu li {
  margin: 0;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-family: SpecialGothicCondensedOne-Regular;
  transition: 0.3s all;
  white-space: nowrap;
}
.cid-7fSddWL99d .offcanvas_btn .footer-menu a:hover {
  color: #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu {
  position: relative;
}
.cid-7fSddWL99d .submenu-panel {
  display: none;
  position: static !important;
  left: 420px;
  top: 0;
  width: 100% !important;
  background-color: #2299aa !important;
  background-color: rgba(34, 153, 170, 0.3) !important;
  padding: 0 !important;
  border-left: none;
  list-style: none;
  overflow-y: auto;
  min-height: 100%;
  z-index: 2;
  margin: 0 !important;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item {
  color: #ffffff !important;
  padding: 8px 20px !important;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.50em !important;
  margin: 0 !important;
}
.cid-7fSddWL99d .submenu-panel .dropdown-item:hover {
  color: #e6c63b !important;
  padding-left: 30px;
  background-color: transparent;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover,
.cid-7fSddWL99d .dropdown-submenu.active .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .dropdown-submenu > a::after {
  content: '';
  float: right;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}
.cid-7fSddWL99d .dropdown-submenu::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.cid-7fSddWL99d .dropdown-submenu:hover .submenu-panel,
.cid-7fSddWL99d .submenu-panel:hover {
  display: block !important;
}
.cid-7fSddWL99d .offcanvas-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.cid-7fSddWL99d .menu-text {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.cid-7fSddWL99d .btn_offcanvas {
  height: 70px !important;
  border-radius: 4px !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
  content: '';
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link::after {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b, 0 0 30px #e6c63b;
}
.cid-7fSddWL99d .dropdown-submenu:hover > .nav-link {
  color: #e6c63b !important;
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link.active::after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 10px #e6c63b, 0 0 20px #e6c63b;
}
@media (min-width: 768px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
    border: none;
  }
  .cid-7fSddWL99d button.btn_offcanvas:hover {
    transform: scale(1.1) !important;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4) !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }
  .cid-7fSddWL99d .btn_offcanvas .offcanvas-button-content {
    gap: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 30px !important;
    height: 30px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 28px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
    top: 8px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
    top: 14px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span:nth-child(4) {
    top: 20px !important;
  }
}
@media (min-width: 1200px) {
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 90px !important;
    height: 100px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 16px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 32px !important;
  }
}
@media (max-width: 767px) {
  .cid-7fSddWL99d .submenu-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 10px 0 10px 20px;
    border-left: none;
    margin-top: 10px;
    background-color: #2299aa;
    background-color: rgba(34, 153, 170, 0.3) !important;
  }
  .cid-7fSddWL99d .dropdown-submenu::before {
    display: none;
  }
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.56) !important;
    padding: 8px 15px !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.89) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 8px !important;
    height: 8px !important;
    margin-left: 10px !important;
  }
  .cid-7fSddWL99d .offcanvas-body {
    width: 90% !important;
    max-width: 400px;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 70px !important;
    height: 70px !important;
    border-radius: 4px !important;
    background: linear-gradient(145deg, #000000, #232323) !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3) !important;
    margin-right: 20px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas {
    width: 26px !important;
    height: 26px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 24px !important;
    height: 3px !important;
    background-color: #ffffff !important;
  }
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body,
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: none !important;
    padding: 20px !important;
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .cid-7fSddWL99d .submenu-panel .dropdown-item {
    font-size: calc(24px * 0.50) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
    font-size: calc(24px * 0.78) !important;
  }
  .cid-7fSddWL99d .navbar-nav .nav-item .nav-link::after {
    width: 6px !important;
    height: 6px !important;
    margin-left: 8px !important;
  }
  .cid-7fSddWL99d button.btn_offcanvas {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px !important;
    margin-right: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .menu-text {
    font-size: 10px !important;
  }
  .cid-7fSddWL99d .btn_offcanvas .hamburger-offcanvas span {
    width: 20px !important;
    height: 2px !important;
  }
}
.cid-7fSddWL99d .navbar-nav .nav-item .nav-link {
  font-size: 0.78em !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-7fSddWL99d .submenu-panel.show,
.cid-7fSddWL99d .is-builder .submenu-panel {
  display: block !important;
}
.cid-7fSddWL99d .is-builder .collapse {
  display: block !important;
  height: auto !important;
}
.cid-7fSddWL99d .container-fluid.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .navbar.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.cid-7fSddWL99d .dropdown-toggle::after {
  display: none !important;
}
.cid-7fSddWL99d .dropdown-submenu > .nav-link::after {
  content: '+';
  font-family: sans-serif;
  margin-left: 10px;
  font-size: 0.8em;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
}
.cid-7fSddWL99d .dropdown-submenu.active > .nav-link::after {
  transform: rotate(45deg);
  color: #ffffff;
}
.cid-7fSddWL99d .offcanvas-start.show {
  transform: translateX(0) !important;
}
.cid-7fSddWL99d .offcanvas-start .btn-close {
  margin-left: 0 !important;
  margin-right: 15px !important;
}
.cid-7fSddWL99d .offcanvas-start .offcanvas_head_container {
  flex-direction: row !important;
}
@media (max-width: 991px) {
  .cid-7fSddWL99d .offcanvas-start .offcanvas-body {
    clip-path: polygon(0% 0%, calc(100% - 23% / 2) 0%, calc(100% - 0% / 2) 100%, 0% 100%) !important;
    padding: 80px 40px 40px 30px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas-end .offcanvas-body {
    clip-path: polygon(calc(23% / 2) 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    padding: 80px 30px 40px 60px !important;
    width: 85vw !important;
  }
  .cid-7fSddWL99d .offcanvas_link {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }
  .cid-7fSddWL99d .btn-close {
    top: 20px !important;
    right: 20px !important;
    padding: 10px !important;
  }
}
.cid-QFzf7hskqT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #16161a;
}
.cid-QFzf7hskqT .container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-QFzf7hskqT .vn-cf1-head {
  max-width: 44rem;
  margin: 0 auto 3.2rem;
  text-align: center;
  color: #22a5e5;
}
.cid-QFzf7hskqT .vn-cf1-eyebrow {
  margin: 0 0 .7rem;
  color: #e63946;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cid-QFzf7hskqT .vn-cf1-title {
  margin: 0 0 1rem;
  color: #22a5e5;
}
.cid-QFzf7hskqT .vn-cf1-lead {
  margin: 0;
  opacity: .72;
}
.cid-QFzf7hskqT .vn-cf1-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
}
.cid-QFzf7hskqT .vn-cf1-stage:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 10px;
  border-radius: 6px;
}
.cid-QFzf7hskqT .vn-cf1-track {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1500px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  touch-action: pan-y;
}
.cid-QFzf7hskqT .vn-cf1-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 330px;
  max-width: 86%;
  height: 100%;
  margin-left: -165px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 0.68, 0.3, 1), opacity 0.4s ease;
  will-change: transform;
  cursor: pointer;
}
.cid-QFzf7hskqT .vn-cf1-card.is-front {
  cursor: default;
}
.cid-QFzf7hskqT .vn-cf1-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  color: #16161a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18), 0 26px 50px -14px rgba(0, 0, 0, 0.6);
}
.cid-QFzf7hskqT .vn-cf1-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.cid-QFzf7hskqT .vn-cf1-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-QFzf7hskqT .vn-cf1-body {
  flex: 0 0 auto;
  padding: 1.3rem 1.4rem 1.5rem;
}
.cid-QFzf7hskqT .vn-cf1-label {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .2rem .65rem;
  border-radius: 99px;
  background: rgba(230, 57, 70, 0.14);
  color: #e63946;
  font-size: .74rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cid-QFzf7hskqT .vn-cf1-card-title {
  margin: 0 0 .45rem;
  color: #16161a;
}
.cid-QFzf7hskqT .vn-cf1-text {
  margin: 0 0 .9rem;
  opacity: .74;
}
.cid-QFzf7hskqT .mbr-section-btn {
  margin: 0;
}
.cid-QFzf7hskqT .vn-cf1-btn,
.cid-QFzf7hskqT .mbr-section-btn .btn {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .cid-QFzf7hskqT .vn-cf1-arrow:hover {
    border-color: #e63946;
    background: #e63946;
    color: #fff;
  }
}
.cid-QFzf7hskqT .vn-cf1-reflect {
  display: none;
}
.cid-QFzf7hskqT .vn-cf1-reflect {
  display: block;
  height: 124.8px;
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.cid-QFzf7hskqT .vn-cf1-reflect img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.cid-QFzf7hskqT .vn-cf1-card {
  height: auto;
}
.cid-QFzf7hskqT .vn-cf1-inner {
  height: 480px;
}
.cid-QFzf7hskqT .vn-cf1-track {
  margin-bottom: 124.8px;
}
.cid-QFzf7hskqT.vn-view-grid .vn-cf1-reflect {
  display: none !important;
}
.cid-QFzf7hskqT .vn-cf1-nav {
  display: flex;
  gap: .8rem;
  margin-top: 2.2rem;
}
.cid-QFzf7hskqT .vn-cf1-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(34, 165, 229, 0.26);
  border-radius: 50%;
  background: transparent;
  color: #22a5e5;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cid-QFzf7hskqT .vn-cf1-arrow svg {
  width: 21px;
  height: 21px;
}
.cid-QFzf7hskqT .vn-cf1-count {
  margin-top: 1rem;
  color: #22a5e5;
  opacity: .55;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.cid-QFzf7hskqT .vn-cf1-dots {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.cid-QFzf7hskqT .vn-cf1-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 165, 229, 0.28);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.cid-QFzf7hskqT .vn-cf1-dot.is-on {
  background: #e63946;
  transform: scale(1.35);
}
.cid-QFzf7hskqT.vn-view-grid .vn-cf1-track {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 2rem;
  height: auto !important;
  perspective: none !important;
}
.cid-QFzf7hskqT.vn-view-grid .vn-cf1-card {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-left: 0 !important;
  width: 330px;
  max-width: 100%;
  height: 480px;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: default;
}
.cid-QFzf7hskqT.vn-view-grid .vn-cf1-nav,
.cid-QFzf7hskqT.vn-view-grid .vn-cf1-dots,
.cid-QFzf7hskqT.vn-view-grid .vn-cf1-count {
  display: none !important;
}
@media (max-width: 575px) {
  .cid-QFzf7hskqT .vn-cf1:not(.vn-view-grid) .vn-cf1-track {
    height: 108vw;
    min-height: 380px;
  }
  .cid-QFzf7hskqT .vn-cf1-body {
    padding: 1.1rem 1.1rem 1.3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cid-QFzf7hskqT .vn-cf1-card {
    transition-duration: .01ms;
  }
}
.cid-QFzf7hskqT P {
  color: #e43f3f;
}
.cid-mnKAg0IZFX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}
.cid-mnKAg0IZFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-mnKAg0IZFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-mnKAg0IZFX .glow {
  position: absolute;
  border-radius: 100%;
  filter: blur(7rem);
  pointer-events: none;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .glow {
    filter: blur(5rem);
  }
}
.cid-mnKAg0IZFX .glow-a {
  left: -180px;
  top: -240px;
  width: 520px;
  height: 520px;
  opacity: .5;
  background-image: linear-gradient(140deg, #1764ff, #6766ff);
  animation: vnF1DriftA 7s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .glow-b {
  right: -170px;
  bottom: -300px;
  width: 470px;
  height: 470px;
  opacity: .42;
  background-image: linear-gradient(140deg, #6766ff, #a128f1);
  animation: vnF1DriftB 9.8s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .container,
.cid-mnKAg0IZFX .container-fluid {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .brand-col {
    margin-bottom: 2.5rem;
  }
}
.cid-mnKAg0IZFX .brand-title {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1764ff, #6766ff 35%, #a128f1 65%, #1764ff);
  background-size: 260% 100%;
  animation: vnF1Shine 4.9s linear infinite;
}
.cid-mnKAg0IZFX .brand-text {
  margin-bottom: 0;
  max-width: 320px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .social-row {
  margin-top: 22px;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill {
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: transparent;
  color: #ffffff;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, background-image 0.35s ease;
}
.cid-mnKAg0IZFX .social-row .btn.soc-pill:hover,
.cid-mnKAg0IZFX .social-row .btn.soc-pill:focus {
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
}
.cid-mnKAg0IZFX .col-title {
  color: #0a2fab;
  letter-spacing: .04em;
}
@media (max-width: 991px) {
  .cid-mnKAg0IZFX .link-col {
    margin-bottom: 2rem;
  }
}
.cid-mnKAg0IZFX .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .list li {
  margin-bottom: 10px;
  transition: color .3s ease;
}
.cid-mnKAg0IZFX .list li:hover {
  color: #ffffff;
}
.cid-mnKAg0IZFX .list a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .list a:hover {
  color: #ffffff;
  background-size: 100% 1px;
}
.cid-mnKAg0IZFX .form-text {
  margin-bottom: 14px;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .footer-form .form-control {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cid-mnKAg0IZFX .footer-form .form-control::-webkit-input-placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control::placeholder {
  color: rgba(154, 163, 178, 0.7);
}
.cid-mnKAg0IZFX .footer-form .form-control:focus {
  border-color: #1764ff;
  box-shadow: 0 0 0 3px rgba(23, 100, 255, 0.22);
}
.cid-mnKAg0IZFX .footer-form .mbr-section-btn {
  margin-top: 10px;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn {
  width: 100%;
  margin: 0;
  border: none;
  background-image: linear-gradient(120deg, #1764ff, #6766ff);
  background-size: 160% 100%;
  background-position: 0 0;
  color: #ffffff;
  transition: background-position 0.5s ease, transform 0.35s ease;
}
.cid-mnKAg0IZFX .footer-form .btn.form-btn:hover,
.cid-mnKAg0IZFX .footer-form .btn.form-btn:focus {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.cid-mnKAg0IZFX .footer-divider {
  height: 1px;
  margin: 3rem 0 1.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(90deg, rgba(23, 100, 255, 0), #1764ff, rgba(23, 100, 255, 0));
  background-repeat: no-repeat;
  background-size: 45% 100%;
  animation: vnF1Sweep 4.2s ease-in-out infinite alternate;
}
.cid-mnKAg0IZFX .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
.cid-mnKAg0IZFX .copyright {
  margin-bottom: 0;
  color: #9aa3b2;
}
.cid-mnKAg0IZFX .legal-row {
  margin-bottom: 0;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link {
  margin: 0 0 0 6px;
  padding: 4px 10px;
  border: none;
  background-color: transparent;
  color: #9aa3b2;
  background-image: linear-gradient(#1764ff, #1764ff);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 10px 100%;
  transition: background-size 0.35s ease, color 0.3s ease;
}
.cid-mnKAg0IZFX .legal-row .btn.legal-link:hover,
.cid-mnKAg0IZFX .legal-row .btn.legal-link:focus {
  color: #ffffff;
  background-size: calc(100% - 20px) 1px;
}
@media (max-width: 767px) {
  .cid-mnKAg0IZFX .legal-row .btn.legal-link {
    margin: 0 3px;
  }
}
@keyframes vnF1DriftA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(180px, 110px) scale(1.3);
  }
}
@keyframes vnF1DriftB {
  from {
    transform: translate(0, 0) scale(1.25);
  }
  to {
    transform: translate(-160px, -100px) scale(1);
  }
}
@keyframes vnF1Shine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260% 0;
  }
}
@keyframes vnF1Sweep {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
