body {
  font-family: Tilt Warp;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.44rem;
  line-height: 60px;
  letter-spacing: 6px;
}
.display-1 > .submit-iconfont {
  font-size: 4.3rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.16em;
  letter-spacing: .06em;
}
.display-2 > .submit-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: .02em;
}
.display-4 > .submit-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.44em;
  letter-spacing: .06em;
}
.display-5 > .submit-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.67;
  letter-spacing: normal;
}
.display-7 > .submit-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 2.752rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.408rem;
    font-size: calc( 1.8539999999999999rem + (3.44 - 1.8539999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8539999999999999rem + (3.44 - 1.8539999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #00c2ff !important;
}
.bg-success {
  background-color: #6d359d !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #d58219 !important;
}
.bg-danger {
  background-color: #d54f19 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00c2ff !important;
  border-color: #00c2ff !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: #0080a8 !important;
  border-color: #0080a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0080a8 !important;
  border-color: #0080a8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #00c2ff !important;
  border-color: #00c2ff !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: #0080a8 !important;
  border-color: #0080a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0080a8 !important;
  border-color: #0080a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #6d359d !important;
  border-color: #6d359d !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: #401f5c !important;
  border-color: #401f5c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #401f5c !important;
  border-color: #401f5c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d58219 !important;
  border-color: #d58219 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #875310 !important;
  border-color: #875310 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #875310 !important;
  border-color: #875310 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d54f19 !important;
  border-color: #d54f19 !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: #873210 !important;
  border-color: #873210 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #873210 !important;
  border-color: #873210 !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: #00c2ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0080a8 !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: #00c2ff !important;
  border-color: #00c2ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00c2ff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0080a8 !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: #00c2ff !important;
  border-color: #00c2ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6d359d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #401f5c !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: #6d359d !important;
  border-color: #6d359d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d58219;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #875310 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d58219 !important;
  border-color: #d58219 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d54f19;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #873210 !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: #d54f19 !important;
  border-color: #d54f19 !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: #00c2ff !important;
}
.text-secondary {
  color: #00c2ff !important;
}
.text-success {
  color: #6d359d !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #d58219 !important;
}
.text-danger {
  color: #d54f19 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #007499 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #007499 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #381b51 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #7a4a0e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #7a2d0e !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: #00c2ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #d58219;
}
.alert-danger {
  background-color: #d54f19;
}
.submit-gallery-filter li.active .btn {
  background-color: #00c2ff;
  border-color: #00c2ff;
  color: #ffffff;
}
.submit-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00c2ff;
}
.submit-plan-header.bg-primary .submit-plan-subtitle,
.submit-plan-header.bg-primary .submit-plan-price-desc {
  color: #ccf3ff;
}
.submit-plan-header.bg-success .submit-plan-subtitle,
.submit-plan-header.bg-success .submit-plan-price-desc {
  color: #ac7ed3;
}
.submit-plan-header.bg-info .submit-plan-subtitle,
.submit-plan-header.bg-info .submit-plan-price-desc {
  color: #b3b3b3;
}
.submit-plan-header.bg-warning .submit-plan-subtitle,
.submit-plan-header.bg-warning .submit-plan-price-desc {
  color: #f8e0c2;
}
.submit-plan-header.bg-danger .submit-plan-subtitle,
.submit-plan-header.bg-danger .submit-plan-price-desc {
  color: #f8d2c2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: .02em;
  font-weight: 400;
}
.form-control > .submit-iconfont {
  font-size: 1.5rem;
}
.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: #00c2ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: .02em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .submit-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #00c2ff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00c2ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00c2ff;
}
.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: #00c2ff;
  border-bottom-color: #00c2ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #00c2ff !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: #00c2ff !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='%2300c2ff' %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;
}
.submit-section-btn .btn,
.submit-section-btn-main .btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  box-shadow: none;
  padding: 10px 70px;
}
@media (max-width: 768px) {
  .submit-section-btn .btn,
  .submit-section-btn-main .btn {
    padding: 10px 40px;
  }
}
.submit-section-btn .btn:hover,
.submit-section-btn-main .btn:hover,
.submit-section-btn .btn:focus,
.submit-section-btn-main .btn:focus {
  box-shadow: none;
}
.submit-section-btn .btn-primary-outline,
.submit-section-btn-main .btn-primary-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #00c2ff;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-primary-outline::after,
.submit-section-btn-main .btn-primary-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #00c2ff;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-primary-outline:hover,
.submit-section-btn-main .btn-primary-outline:hover,
.submit-section-btn .btn-primary-outline:focus,
.submit-section-btn-main .btn-primary-outline:focus {
  border: 2px solid transparent !important;
  color: #000000 !important;
  box-shadow: inset 0 -100px 0 0 #00c2ff !important;
}
.submit-section-btn .btn-secondary-outline,
.submit-section-btn-main .btn-secondary-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #00c2ff;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-secondary-outline::after,
.submit-section-btn-main .btn-secondary-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #00c2ff;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-secondary-outline:hover,
.submit-section-btn-main .btn-secondary-outline:hover,
.submit-section-btn .btn-secondary-outline:focus,
.submit-section-btn-main .btn-secondary-outline:focus {
  border: 2px solid transparent !important;
  color: #000000 !important;
  box-shadow: inset 0 -100px 0 0 #00c2ff !important;
}
.submit-section-btn .btn-success-outline,
.submit-section-btn-main .btn-success-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #6d359d;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-success-outline::after,
.submit-section-btn-main .btn-success-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #6d359d;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-success-outline:hover,
.submit-section-btn-main .btn-success-outline:hover,
.submit-section-btn .btn-success-outline:focus,
.submit-section-btn-main .btn-success-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #6d359d !important;
}
.submit-section-btn .btn-info-outline,
.submit-section-btn-main .btn-info-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #000000;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-info-outline::after,
.submit-section-btn-main .btn-info-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-info-outline:hover,
.submit-section-btn-main .btn-info-outline:hover,
.submit-section-btn .btn-info-outline:focus,
.submit-section-btn-main .btn-info-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #000000 !important;
}
.submit-section-btn .btn-warning-outline,
.submit-section-btn-main .btn-warning-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #d58219;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-warning-outline::after,
.submit-section-btn-main .btn-warning-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #d58219;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-warning-outline:hover,
.submit-section-btn-main .btn-warning-outline:hover,
.submit-section-btn .btn-warning-outline:focus,
.submit-section-btn-main .btn-warning-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #d58219 !important;
}
.submit-section-btn .btn-danger-outline,
.submit-section-btn-main .btn-danger-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #d54f19;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-danger-outline::after,
.submit-section-btn-main .btn-danger-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #d54f19;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-danger-outline:hover,
.submit-section-btn-main .btn-danger-outline:hover,
.submit-section-btn .btn-danger-outline:focus,
.submit-section-btn-main .btn-danger-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #d54f19 !important;
}
.submit-section-btn .btn-white-outline,
.submit-section-btn-main .btn-white-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-white-outline::after,
.submit-section-btn-main .btn-white-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-white-outline:hover,
.submit-section-btn-main .btn-white-outline:hover,
.submit-section-btn .btn-white-outline:focus,
.submit-section-btn-main .btn-white-outline:focus {
  border: 2px solid transparent !important;
  color: #000000;
  box-shadow: inset 0 -100px 0 0 #ffffff !important;
}
.submit-section-btn .btn-black-outline,
.submit-section-btn-main .btn-black-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #000000;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-black-outline::after,
.submit-section-btn-main .btn-black-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.submit-section-btn .btn-black-outline:hover,
.submit-section-btn-main .btn-black-outline:hover,
.submit-section-btn .btn-black-outline:focus,
.submit-section-btn-main .btn-black-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 #000000 !important;
}
.NfqCX-uOyMYdscNy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyMYdscNy .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyMYdscNy .btn {
  font-weight: 400;
}
.NfqCX-uOyMYdscNy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyMYdscNy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyMYdscNy .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyMYdscNy .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyMYdscNy .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyMYdscNy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .nav-item:focus,
.NfqCX-uOyMYdscNy .nav-link:focus {
  outline: none;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyMYdscNy .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyMYdscNy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyMYdscNy .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyMYdscNy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyMYdscNy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyMYdscNy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyMYdscNy .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%;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyMYdscNy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyMYdscNy .dropdown-item.active,
.NfqCX-uOyMYdscNy .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyMYdscNy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyMYdscNy ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyMYdscNy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyMYdscNy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyMYdscNy .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyMYdscNy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyMYdscNy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyMYdscNy .navbar {
    height: 70px;
  }
  .NfqCX-uOyMYdscNy .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyMYdscNy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyMYdscNy .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyMYdscNy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyMYdscNy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyN503mSG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #1c1f24;
}
.NfqCX-uOyN503mSG .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyN503mSG .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyN503mSG .content-wrap {
  justify-content: flex-end;
}
.NfqCX-uOyN503mSG .content-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyN503mSG .content-wrapper {
    margin-bottom: 32px;
  }
}
.NfqCX-uOyN503mSG .content-wrapper .submit-section-title {
  margin-bottom: 24px;
}
.NfqCX-uOyN503mSG .content-wrapper .submit-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.NfqCX-uOyN503mSG .content-wrapper .text-wrapper .submit-text {
  width: 80%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .NfqCX-uOyN503mSG .content-wrapper .text-wrapper .submit-text {
    width: 100%;
  }
}
.NfqCX-uOyN503mSG .image-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .NfqCX-uOyN503mSG .image-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyN503mSG .image-wrapper {
    padding: 0;
  }
}
.NfqCX-uOyN503mSG .image-wrapper img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .NfqCX-uOyN503mSG .image-wrapper img {
    height: 350px;
  }
}
.NfqCX-uOyN503mSG .submit-section-title {
  color: #ffffff;
}
.NfqCX-uOyN503mSG .submit-text,
.NfqCX-uOyN503mSG .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyN503mSG .submit-section-title,
.NfqCX-uOyN503mSG .submit-section-btn,
.NfqCX-uOyN503mSG .clients-wrapper {
  text-align: center;
}
.NfqCX-uOyNd8IxJY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2f36;
}
.NfqCX-uOyNd8IxJY .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyNd8IxJY .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyNd8IxJY .row {
  justify-content: center;
}
.NfqCX-uOyNd8IxJY .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyNd8IxJY .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.NfqCX-uOyNd8IxJY .title-wrapper .title-wrap .submit-section-title {
  margin-bottom: 0;
}
.NfqCX-uOyNd8IxJY .title-wrapper .title-wrap .submit-iconfont {
  font-size: 18px;
  margin-right: 12px;
}
.NfqCX-uOyNd8IxJY .content-wrapper .submit-desc {
  margin-bottom: 30px;
}
.NfqCX-uOyNd8IxJY .content-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyNd8IxJY .submit-section-title,
.NfqCX-uOyNd8IxJY .submit-iconfont {
  color: #FFBE0D;
}
.NfqCX-uOyNd8IxJY .submit-desc {
  color: #fff7ee;
  text-align: center;
}
.NfqCX-uOyNd8IxJY .submit-text {
  color: #fff7ee;
  text-align: center;
}
.NfqCX-uOyNd8IxJY .submit-section-title,
.NfqCX-uOyNd8IxJY .title-wrapper,
.NfqCX-uOyNd8IxJY .submit-iconfont {
  color: #00c2ff;
}
.NfqCX-uOyNgx4C51 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f24;
}
.NfqCX-uOyNgx4C51 .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyNgx4C51 .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyNgx4C51 .items-wrap {
  justify-content: space-between;
}
.NfqCX-uOyNgx4C51 .items-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyNgx4C51 .content-wrapper {
    margin-bottom: 32px;
  }
}
.NfqCX-uOyNgx4C51 .content-wrapper .submit-section-title {
  margin-bottom: 32px;
}
.NfqCX-uOyNgx4C51 .content-wrapper .submit-section-title span {
  color: #bcfe1e;
}
.NfqCX-uOyNgx4C51 .content-wrapper .text-wrapper .submit-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyNgx4C51 .content-wrapper .text-wrapper .submit-text {
    margin-bottom: 16px;
    width: 100%;
  }
}
.NfqCX-uOyNgx4C51 .image-wrapper {
  margin-bottom: 32px;
}
.NfqCX-uOyNgx4C51 .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .NfqCX-uOyNgx4C51 .image-wrapper img {
    height: 350px;
  }
}
.NfqCX-uOyNgx4C51 .submit-section-title {
  color: #ffffff;
}
.NfqCX-uOyNgx4C51 .submit-text,
.NfqCX-uOyNgx4C51 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyNgx4C51 .submit-section-title,
.NfqCX-uOyNgx4C51 .submit-section-btn {
  text-align: center;
}
.NfqCX-uOyNr9kJTA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2f36;
}
.NfqCX-uOyNr9kJTA .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyNr9kJTA .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyNr9kJTA .title-wrapper .submit-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .NfqCX-uOyNr9kJTA .title-wrapper .submit-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyNr9kJTA .title-wrapper .submit-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.NfqCX-uOyNr9kJTA .border-wrapper_1 {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-bottom: 20px;
}
.NfqCX-uOyNr9kJTA .border-wrapper_2 {
  width: 100%;
  height: 1px;
  background-color: #bac0cc;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .NfqCX-uOyNr9kJTA .border-wrapper_2 {
    margin-top: 0;
  }
}
.NfqCX-uOyNr9kJTA .items-wrapper {
  margin: 0 -5px;
}
.NfqCX-uOyNr9kJTA .items-wrapper .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .NfqCX-uOyNr9kJTA .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  height: 100%;
  background-color: #1c1f24;
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .icon-wrapper .submit-iconfont {
  font-size: 84px;
  color: #00c2ff;
  display: inline-flex;
}
@media (max-width: 992px) {
  .NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .icon-wrapper .submit-iconfont {
    font-size: 54px;
  }
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .submit-section-btn {
  margin-top: 20px;
}
.NfqCX-uOyNr9kJTA .items-wrapper .item .item-wrapper .submit-section-btn .btn {
  margin-bottom: 0;
}
.NfqCX-uOyNr9kJTA .submit-section-title {
  color: #093388;
}
.NfqCX-uOyNr9kJTA .item-title {
  color: #093388;
}
.NfqCX-uOyNr9kJTA .item-text {
  color: #58595b;
}
.NfqCX-uOyNr9kJTA .submit-section-title,
.NfqCX-uOyNr9kJTA .title-wrapper {
  color: #ffffff;
}
.NfqCX-uOyNr9kJTA .item-title,
.NfqCX-uOyNr9kJTA .submit-section-btn,
.NfqCX-uOyNr9kJTA .icon-wrapper {
  color: #ffffff;
}
.NfqCX-uOyNr9kJTA .item-text,
.NfqCX-uOyNr9kJTA .text-wrapper {
  color: #ffffff;
}
.NfqCX-uOyNzui94A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f24;
}
.NfqCX-uOyNzui94A .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyNzui94A .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyNzui94A .submit-section-btn {
  margin-bottom: 22px;
}
.NfqCX-uOyNzui94A .title-wrapper .submit-section-title {
  margin-bottom: 32px;
}
.NfqCX-uOyNzui94A .title-wrapper .submit-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyNzui94A .title-wrapper .submit-desc {
    margin-bottom: 32px;
  }
}
.NfqCX-uOyNzui94A .text-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyNzui94A .submit-section-title {
  color: #000000;
}
.NfqCX-uOyNzui94A .submit-desc {
  color: #fdfde1;
}
.NfqCX-uOyNzui94A .submit-text {
  color: #000000;
}
.NfqCX-uOyNzui94A .submit-text,
.NfqCX-uOyNzui94A .text-wrapper {
  color: #ffffff;
}
.NfqCX-uOyNzui94A .submit-section-title,
.NfqCX-uOyNzui94A .submit-section-btn {
  color: #ffffff;
}
.NfqCX-uOyNBTDjE6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2f36;
}
.NfqCX-uOyNBTDjE6 .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyNBTDjE6 .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyNBTDjE6 .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.NfqCX-uOyNBTDjE6 .items-wrapper .item {
  padding: 0 40px;
}
.NfqCX-uOyNBTDjE6 .item {
  margin-bottom: 40px;
}
.NfqCX-uOyNBTDjE6 .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.NfqCX-uOyNBTDjE6 .item .item-wrapper .item-content .title-wrapper {
  margin-bottom: 20px;
}
.NfqCX-uOyNBTDjE6 .item .item-wrapper .item-content .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyNBTDjE6 .item .item-wrapper .item-content .title-wrapper .title-wrap .iconfont-wrapper .submit-iconfont {
  display: inline-flex;
  font-size: 20px;
  color: #00c2ff;
  margin-right: 10px;
}
.NfqCX-uOyNBTDjE6 .item .item-wrapper .item-content .title-wrapper .title-wrap .item-title {
  margin-bottom: 0;
}
.NfqCX-uOyNBTDjE6 .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.NfqCX-uOyNBTDjE6 .item-title,
.NfqCX-uOyNBTDjE6 .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyNBTDjE6 .item-text {
  color: #6e6e73;
  text-align: center;
}
.NfqCX-uOyNBTDjE6 .item-text,
.NfqCX-uOyNBTDjE6 .submit-section-btn {
  text-align: center;
  color: #ffffff;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyMYdscNy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyMYdscNy .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyMYdscNy .btn {
  font-weight: 400;
}
.NfqCX-uOyMYdscNy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyMYdscNy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyMYdscNy .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyMYdscNy .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyMYdscNy .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyMYdscNy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .nav-item:focus,
.NfqCX-uOyMYdscNy .nav-link:focus {
  outline: none;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyMYdscNy .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyMYdscNy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyMYdscNy .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyMYdscNy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyMYdscNy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyMYdscNy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyMYdscNy .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%;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyMYdscNy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyMYdscNy .dropdown-item.active,
.NfqCX-uOyMYdscNy .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyMYdscNy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyMYdscNy ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyMYdscNy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyMYdscNy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyMYdscNy .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyMYdscNy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyMYdscNy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyMYdscNy .navbar {
    height: 70px;
  }
  .NfqCX-uOyMYdscNy .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyMYdscNy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyMYdscNy .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyMYdscNy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyMYdscNy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyRuh0iaG {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #2a2f36;
  overflow: hidden;
}
.NfqCX-uOyRuh0iaG .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyRuh0iaG .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyRuh0iaG .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .NfqCX-uOyRuh0iaG .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .NfqCX-uOyRuh0iaG .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyRuh0iaG .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .NfqCX-uOyRuh0iaG .container {
    padding: 0 16px;
  }
}
.NfqCX-uOyRuh0iaG .row {
  justify-content: space-between;
}
.NfqCX-uOyRuh0iaG .row:hover,
.NfqCX-uOyRuh0iaG .row:focus {
  cursor: pointer;
}
.NfqCX-uOyRuh0iaG .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyRuh0iaG .image-wrapper {
    margin-bottom: 32px;
  }
}
.NfqCX-uOyRuh0iaG .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyRuh0iaG .image-wrapper img {
    height: 300px;
  }
}
.NfqCX-uOyRuh0iaG .content-wrapper .submit-section-title {
  margin-bottom: 16px;
}
.NfqCX-uOyRuh0iaG .content-wrapper .submit-text {
  margin-bottom: 16px;
}
.NfqCX-uOyRuh0iaG .submit-section-title {
  color: #000000;
}
.NfqCX-uOyRuh0iaG .submit-text {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyRuh0iaG .submit-section-title,
.NfqCX-uOyRuh0iaG .submit-section-btn {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyRyZbcfK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1c1f24;
}
.NfqCX-uOyRyZbcfK .container {
  max-width: 1000px;
}
.NfqCX-uOyRyZbcfK .submit-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #ffffff;
}
.NfqCX-uOyRyZbcfK .submit-section-title {
  color: #ffffff;
}
.NfqCX-uOyRB54ept {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #2a2f36;
}
.NfqCX-uOyRB54ept .row {
  align-items: center;
}
@media (max-width: 991px) {
  .NfqCX-uOyRB54ept .row {
    flex-direction: column-reverse;
  }
  .NfqCX-uOyRB54ept .image-wrapper {
    margin-bottom: 2rem;
  }
  .NfqCX-uOyRB54ept .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .NfqCX-uOyRB54ept .card-wrapper {
    padding-right: 2rem;
  }
}
.NfqCX-uOyRB54ept .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.NfqCX-uOyRB54ept .card-title {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyRB54ept .submit-text,
.NfqCX-uOyRB54ept .submit-section-btn {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyRB54ept .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyRB54ept .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOySltXMkV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f24;
  background-image: linear-gradient(45deg, #00c2ff -20%, #1c1f24 40%);
}
@media (max-width: 768px) {
  .NfqCX-uOySltXMkV {
    background-image: linear-gradient(45deg, #00c2ff -60%, #1c1f24 40%);
  }
}
.NfqCX-uOySltXMkV .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOySltXMkV .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOySltXMkV .row {
  justify-content: space-between;
}
.NfqCX-uOySltXMkV .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .NfqCX-uOySltXMkV .content-wrapper {
    margin-bottom: 22px;
    height: auto;
  }
}
.NfqCX-uOySltXMkV .content-wrapper .submit-section-title {
  margin-bottom: 22px;
}
.NfqCX-uOySltXMkV .content-wrapper .card-wrapper {
  -webkit-flex: inherit;
}
.NfqCX-uOySltXMkV .content-wrapper .card-wrapper .card-wrap {
  display: inline-block;
  padding: 32px 26px;
  background-color: #1f2329;
}
@media (max-width: 992px) {
  .NfqCX-uOySltXMkV .content-wrapper .card-wrapper .card-wrap {
    padding: 16px;
  }
}
.NfqCX-uOySltXMkV .content-wrapper .card-wrapper .card-wrap .submit-desc {
  margin-bottom: 10px;
}
.NfqCX-uOySltXMkV .content-wrapper .card-wrapper .card-wrap .submit-email {
  margin-bottom: 0;
}
.NfqCX-uOySltXMkV .panel-group .card {
  position: relative;
  padding: 22px 0 26px 0;
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .NfqCX-uOySltXMkV .panel-group .card {
    padding: 16px 0 16px 0;
  }
}
.NfqCX-uOySltXMkV .panel-group .card:first-child {
  border-top: 1px solid #ffffff;
}
.NfqCX-uOySltXMkV .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.NfqCX-uOySltXMkV .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.NfqCX-uOySltXMkV .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.NfqCX-uOySltXMkV .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background-color: #1f2329;
}
.NfqCX-uOySltXMkV .panel-group .card .card-header .panel-title .icon-wrapper .submit-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.NfqCX-uOySltXMkV .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .submit-iconfont {
  transform: rotate(-45deg);
}
.NfqCX-uOySltXMkV .panel-group .card .panel-collapse .panel-body {
  margin-top: 22px;
}
.NfqCX-uOySltXMkV .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.NfqCX-uOySltXMkV .submit-section-title {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOySltXMkV .submit-desc {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOySltXMkV .submit-email {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOySltXMkV .panel-title-edit {
  color: #ffffff;
}
.NfqCX-uOySltXMkV .panel-text {
  color: #ffffff;
}
.NfqCX-uOySltXMkV .submit-desc,
.NfqCX-uOySltXMkV .card-wrapper {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyMYdscNy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyMYdscNy .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyMYdscNy .btn {
  font-weight: 400;
}
.NfqCX-uOyMYdscNy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyMYdscNy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyMYdscNy .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyMYdscNy .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyMYdscNy .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyMYdscNy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .nav-item:focus,
.NfqCX-uOyMYdscNy .nav-link:focus {
  outline: none;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyMYdscNy .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyMYdscNy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyMYdscNy .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyMYdscNy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyMYdscNy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyMYdscNy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyMYdscNy .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%;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyMYdscNy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyMYdscNy .dropdown-item.active,
.NfqCX-uOyMYdscNy .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyMYdscNy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyMYdscNy ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyMYdscNy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyMYdscNy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyMYdscNy .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyMYdscNy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyMYdscNy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyMYdscNy .navbar {
    height: 70px;
  }
  .NfqCX-uOyMYdscNy .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyMYdscNy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyMYdscNy .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyMYdscNy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyMYdscNy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyQyU9BkK {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #1c1f24;
}
.NfqCX-uOyQyU9BkK .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyQyU9BkK .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyQyU9BkK .row {
  margin: 0 -8px;
}
.NfqCX-uOyQyU9BkK .row .card {
  padding: 0 8px;
}
.NfqCX-uOyQyU9BkK .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #2a2f36;
}
@media (max-width: 1440px) {
  .NfqCX-uOyQyU9BkK .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyQyU9BkK .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.NfqCX-uOyQyU9BkK .card-wrapper .submit-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .NfqCX-uOyQyU9BkK .card-wrapper .submit-section-title {
    margin-bottom: 24px;
  }
}
.NfqCX-uOyQyU9BkK .card-wrapper .card-wrap .text-wrapper .submit-text {
  margin-bottom: 24px;
}
.NfqCX-uOyQyU9BkK .card-wrapper .card-wrap .submit-section-btn .btn {
  margin-bottom: 0;
}
.NfqCX-uOyQyU9BkK .image-wrapper {
  height: 100%;
}
.NfqCX-uOyQyU9BkK .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .NfqCX-uOyQyU9BkK .image-wrapper img {
    height: 300px;
  }
}
.NfqCX-uOyQyU9BkK .submit-section-title {
  color: #2c2c26;
}
.NfqCX-uOyQyU9BkK .submit-text,
.NfqCX-uOyQyU9BkK .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyQyU9BkK .submit-section-title,
.NfqCX-uOyQyU9BkK .submit-section-btn {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyQAWZNnJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2f36;
}
.NfqCX-uOyQAWZNnJ .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyQAWZNnJ .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyQAWZNnJ .row {
  justify-content: space-between;
}
.NfqCX-uOyQAWZNnJ .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .NfqCX-uOyQAWZNnJ .content-wrapper {
    padding: 0;
  }
}
.NfqCX-uOyQAWZNnJ .content-wrapper .submit-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .NfqCX-uOyQAWZNnJ .content-wrapper .submit-section-title {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyQAWZNnJ .content-wrapper .submit-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .NfqCX-uOyQAWZNnJ .content-wrapper .submit-text {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyQAWZNnJ .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyQAWZNnJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.NfqCX-uOyQAWZNnJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.NfqCX-uOyQAWZNnJ .content-wrapper .logo-wrapper .logo-wrap .submit-desc {
  margin-bottom: 0;
}
.NfqCX-uOyQAWZNnJ .submit-section-title {
  color: #000000;
}
.NfqCX-uOyQAWZNnJ .submit-desc {
  color: #000000;
}
.NfqCX-uOyQAWZNnJ .submit-text {
  color: #ffffff;
}
.NfqCX-uOyQAWZNnJ .submit-section-title,
.NfqCX-uOyQAWZNnJ .submit-section-btn {
  color: #ffffff;
}
.NfqCX-uOyQEtNWSo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1c1f24;
  overflow: hidden;
}
.NfqCX-uOyQEtNWSo .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyQEtNWSo .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyQEtNWSo .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyQEtNWSo .card {
  justify-content: center;
}
.NfqCX-uOyQEtNWSo .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyQEtNWSo .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.NfqCX-uOyQEtNWSo .content-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyQEtNWSo .content-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyQEtNWSo .image-wrapper {
  display: flex;
  justify-content: center;
}
.NfqCX-uOyQEtNWSo .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #00c2ff;
}
@media (max-width: 1440px) {
  .NfqCX-uOyQEtNWSo .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .NfqCX-uOyQEtNWSo .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyQEtNWSo .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .NfqCX-uOyQEtNWSo .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.NfqCX-uOyQEtNWSo .submit-section-title {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyQEtNWSo .submit-text {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyR1r4GQP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2f36;
}
.NfqCX-uOyR1r4GQP .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyR1r4GQP .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyR1r4GQP .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .NfqCX-uOyR1r4GQP .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .NfqCX-uOyR1r4GQP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyR1r4GQP .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .NfqCX-uOyR1r4GQP .container {
    padding: 0 16px;
  }
}
.NfqCX-uOyR1r4GQP .row {
  justify-content: center;
}
.NfqCX-uOyR1r4GQP .content-wrapper {
  padding: 80px 60px;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  background-color: #1c1f24;
}
@media (max-width: 1200px) {
  .NfqCX-uOyR1r4GQP .content-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .NfqCX-uOyR1r4GQP .content-wrapper {
    padding: 30px 25px;
  }
}
.NfqCX-uOyR1r4GQP .content-wrapper .image-wrap {
  min-width: 40%;
}
@media (max-width: 1200px) {
  .NfqCX-uOyR1r4GQP .content-wrapper .image-wrap {
    margin-bottom: 32px;
  }
}
.NfqCX-uOyR1r4GQP .content-wrapper .image-wrap img {
  height: 450px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 1200px) {
  .NfqCX-uOyR1r4GQP .content-wrapper .image-wrap img {
    height: 350px;
  }
}
.NfqCX-uOyR1r4GQP .content-wrapper .content-wrap {
  padding-left: 64px;
}
@media (max-width: 1200px) {
  .NfqCX-uOyR1r4GQP .content-wrapper .content-wrap {
    padding: 0;
  }
}
.NfqCX-uOyR1r4GQP .content-wrapper .content-wrap .submit-section-title {
  margin-bottom: 16px;
}
.NfqCX-uOyR1r4GQP .content-wrapper .content-wrap .submit-text {
  margin-bottom: 16px;
}
.NfqCX-uOyR1r4GQP .submit-section-title {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyR1r4GQP .submit-text {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyMYdscNy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyMYdscNy .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyMYdscNy .btn {
  font-weight: 400;
}
.NfqCX-uOyMYdscNy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyMYdscNy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyMYdscNy .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyMYdscNy .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyMYdscNy .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyMYdscNy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .nav-item:focus,
.NfqCX-uOyMYdscNy .nav-link:focus {
  outline: none;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyMYdscNy .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyMYdscNy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyMYdscNy .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyMYdscNy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyMYdscNy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyMYdscNy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyMYdscNy .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%;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyMYdscNy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyMYdscNy .dropdown-item.active,
.NfqCX-uOyMYdscNy .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyMYdscNy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyMYdscNy ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyMYdscNy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyMYdscNy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyMYdscNy .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyMYdscNy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyMYdscNy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyMYdscNy .navbar {
    height: 70px;
  }
  .NfqCX-uOyMYdscNy .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyMYdscNy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyMYdscNy .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyMYdscNy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyMYdscNy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOySRHH3tq {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #1c1f24;
}
.NfqCX-uOySRHH3tq .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOySRHH3tq .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOySRHH3tq .content-wrap {
  padding: 60px;
  background-color: #2a2f36;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOySRHH3tq .content-wrap {
    padding: 30px 20px;
    display: block;
  }
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap {
  width: 60%;
}
@media (max-width: 992px) {
  .NfqCX-uOySRHH3tq .content-wrap .cont-wrap {
    width: 100%;
  }
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .NfqCX-uOySRHH3tq .content-wrap .cont-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .title-wrapper .desc-wrapper .submit-desc {
  display: inline-block;
  background-color: #fff1e2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .title-wrapper .submit-section-title {
  margin-bottom: 0;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .title-wrapper .submit-section-title span {
  color: #ed463f;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .submit-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .submit-text {
    margin-bottom: 20px;
  }
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  border: none !important;
  box-shadow: none;
  background-color: #f8f8f8;
  line-height: 1 !important;
}
@media (max-width: 992px) {
  .NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #404349;
  font-size: 18px;
  opacity: .6;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #404349;
  border-color: #404349;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .submit-section-btn {
  width: 100%;
}
.NfqCX-uOySRHH3tq .content-wrap .cont-wrap .form-wrapper .dragArea.row .submit-section-btn .btn {
  width: 100%;
  margin-top: 0;
}
.NfqCX-uOySRHH3tq .submit-section-title {
  color: #404349;
}
.NfqCX-uOySRHH3tq .submit-desc {
  color: #b19a7c;
}
.NfqCX-uOySRHH3tq .submit-text {
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOySRHH3tq label {
  color: #404349;
}
.NfqCX-uOySRHH3tq .submit-section-title,
.NfqCX-uOySRHH3tq .title-wrap {
  text-align: center;
  color: #ffffff;
}
.NfqCX-uOyU5dpCxG {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #2a2f36;
}
.NfqCX-uOyU5dpCxG .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyU5dpCxG .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyU5dpCxG .item-wrapper {
    margin-bottom: 1rem;
  }
}
.NfqCX-uOyU5dpCxG .line {
  width: 100%;
  height: 1px;
  background: #00c2ff;
  opacity: 0.5;
  margin: 1rem 0;
  margin-bottom: 2rem;
}
.NfqCX-uOyU5dpCxG .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.NfqCX-uOyU5dpCxG .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.NfqCX-uOyU5dpCxG .card-box {
  padding: 0 2rem;
}
.NfqCX-uOyU5dpCxG .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyU5dpCxG .card-title,
.NfqCX-uOyU5dpCxG .iconfont-wrapper,
.NfqCX-uOyU5dpCxG .card-text {
  color: #000000;
  text-align: center;
}
.NfqCX-uOyU5dpCxG .submit-section-title {
  color: #291f1e;
  text-align: left;
}
.NfqCX-uOyU5dpCxG .submit-section-btn {
  text-align: center;
}
.NfqCX-uOyU5dpCxG .card-text,
.NfqCX-uOyU5dpCxG .submit-section-btn {
  color: #ffffff;
  text-align: left;
}
.NfqCX-uOyU5dpCxG .card-title,
.NfqCX-uOyU5dpCxG .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.NfqCX-uOyU5dpCxG .submit-section-subtitle {
  color: #291f1e;
  text-align: left;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyMYdscNy {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyMYdscNy .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyMYdscNy .btn {
  font-weight: 400;
}
.NfqCX-uOyMYdscNy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyMYdscNy .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyMYdscNy .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyMYdscNy .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyMYdscNy .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyMYdscNy .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyMYdscNy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyMYdscNy .nav-item:focus,
.NfqCX-uOyMYdscNy .nav-link:focus {
  outline: none;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyMYdscNy .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyMYdscNy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyMYdscNy .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyMYdscNy .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyMYdscNy .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyMYdscNy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyMYdscNy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyMYdscNy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyMYdscNy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyMYdscNy .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%;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyMYdscNy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyMYdscNy .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyMYdscNy .dropdown-item.active,
.NfqCX-uOyMYdscNy .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyMYdscNy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyMYdscNy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyMYdscNy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyMYdscNy ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyMYdscNy .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyMYdscNy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyMYdscNy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyMYdscNy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyMYdscNy .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyMYdscNy .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyMYdscNy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyMYdscNy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyMYdscNy .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyMYdscNy .navbar {
    height: 70px;
  }
  .NfqCX-uOyMYdscNy .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyMYdscNy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyMYdscNy .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyMYdscNy .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyMYdscNy .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyMYdscNy .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyMYdscNy .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyMYdscNy .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyUH5rbs2 {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.NfqCX-uOyUH5rbs2 .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.NfqCX-uOyUH5rbs2 .submit-text {
  line-height: 1.5;
  color: #000000;
}
.NfqCX-uOyUH5rbs2 .submit-section-title {
  text-align: left;
  color: #000000;
}
.NfqCX-uOyUH5rbs2 .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyUH5rbs2 .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyUIjJ0Yc {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyUIjJ0Yc .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIjJ0Yc .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyUIjJ0Yc .btn {
  font-weight: 400;
}
.NfqCX-uOyUIjJ0Yc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyUIjJ0Yc .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyUIjJ0Yc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyUIjJ0Yc .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyUIjJ0Yc .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyUIjJ0Yc .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyUIjJ0Yc .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyUIjJ0Yc .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyUIjJ0Yc .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyUIjJ0Yc .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyUIjJ0Yc .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyUIjJ0Yc .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyUIjJ0Yc .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyUIjJ0Yc .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyUIjJ0Yc .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIjJ0Yc .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyUIjJ0Yc .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIjJ0Yc .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyUIjJ0Yc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyUIjJ0Yc .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIjJ0Yc .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyUIjJ0Yc .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyUIjJ0Yc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyUIjJ0Yc .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyUIjJ0Yc .nav-item:focus,
.NfqCX-uOyUIjJ0Yc .nav-link:focus {
  outline: none;
}
.NfqCX-uOyUIjJ0Yc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyUIjJ0Yc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyUIjJ0Yc .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyUIjJ0Yc .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyUIjJ0Yc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyUIjJ0Yc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyUIjJ0Yc .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyUIjJ0Yc .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyUIjJ0Yc .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyUIjJ0Yc .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyUIjJ0Yc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyUIjJ0Yc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIjJ0Yc .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyUIjJ0Yc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyUIjJ0Yc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyUIjJ0Yc .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%;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyUIjJ0Yc .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyUIjJ0Yc .dropdown-item.active,
.NfqCX-uOyUIjJ0Yc .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyUIjJ0Yc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyUIjJ0Yc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyUIjJ0Yc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyUIjJ0Yc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyUIjJ0Yc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyUIjJ0Yc ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyUIjJ0Yc .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIjJ0Yc .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyUIjJ0Yc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyUIjJ0Yc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyUIjJ0Yc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyUIjJ0Yc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyUIjJ0Yc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyUIjJ0Yc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyUIjJ0Yc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyUIjJ0Yc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyUIjJ0Yc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyUIjJ0Yc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyUIjJ0Yc .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyUIjJ0Yc .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyUIjJ0Yc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyUIjJ0Yc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIjJ0Yc .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyUIjJ0Yc .navbar {
    height: 70px;
  }
  .NfqCX-uOyUIjJ0Yc .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyUIjJ0Yc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyUIjJ0Yc .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyUIjJ0Yc .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyUIjJ0Yc .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyUIjJ0Yc .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyUIjJ0Yc .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyUIjJ0Yc .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyUIjJ0Yc .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyUIjJ0Yc .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyUIjJ0Yc .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyUIjJ0Yc .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyUIko5Z9 {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.NfqCX-uOyUIko5Z9 .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.NfqCX-uOyUIko5Z9 .submit-text {
  line-height: 1.5;
  color: #000000;
}
.NfqCX-uOyUIko5Z9 .submit-section-title {
  text-align: left;
  color: #000000;
}
.NfqCX-uOyUIko5Z9 .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyUIko5Z9 .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyUIEkF6q {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyUIEkF6q .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIEkF6q .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyUIEkF6q .btn {
  font-weight: 400;
}
.NfqCX-uOyUIEkF6q .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyUIEkF6q .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyUIEkF6q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyUIEkF6q .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyUIEkF6q .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyUIEkF6q .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyUIEkF6q .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyUIEkF6q .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyUIEkF6q .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyUIEkF6q .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyUIEkF6q .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyUIEkF6q .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyUIEkF6q .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyUIEkF6q .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyUIEkF6q .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIEkF6q .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyUIEkF6q .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIEkF6q .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyUIEkF6q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyUIEkF6q .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIEkF6q .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyUIEkF6q .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyUIEkF6q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyUIEkF6q .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyUIEkF6q .nav-item:focus,
.NfqCX-uOyUIEkF6q .nav-link:focus {
  outline: none;
}
.NfqCX-uOyUIEkF6q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyUIEkF6q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyUIEkF6q .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyUIEkF6q .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyUIEkF6q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyUIEkF6q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyUIEkF6q .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyUIEkF6q .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyUIEkF6q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyUIEkF6q .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyUIEkF6q .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyUIEkF6q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyUIEkF6q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyUIEkF6q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIEkF6q .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyUIEkF6q .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyUIEkF6q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyUIEkF6q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyUIEkF6q .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%;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyUIEkF6q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyUIEkF6q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyUIEkF6q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyUIEkF6q .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyUIEkF6q .dropdown-item.active,
.NfqCX-uOyUIEkF6q .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyUIEkF6q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyUIEkF6q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyUIEkF6q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyUIEkF6q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyUIEkF6q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyUIEkF6q .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyUIEkF6q ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyUIEkF6q .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIEkF6q .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyUIEkF6q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyUIEkF6q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyUIEkF6q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyUIEkF6q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyUIEkF6q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyUIEkF6q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyUIEkF6q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyUIEkF6q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyUIEkF6q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyUIEkF6q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyUIEkF6q .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyUIEkF6q .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyUIEkF6q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyUIEkF6q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIEkF6q .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyUIEkF6q .navbar {
    height: 70px;
  }
  .NfqCX-uOyUIEkF6q .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyUIEkF6q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyUIEkF6q .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyUIEkF6q .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyUIEkF6q .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyUIEkF6q .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyUIEkF6q .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyUIEkF6q .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyUIEkF6q .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyUIEkF6q .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyUIEkF6q .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyUIEkF6q .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyUIEYIEd {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.NfqCX-uOyUIEYIEd .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.NfqCX-uOyUIEYIEd .submit-text {
  line-height: 1.5;
  color: #000000;
}
.NfqCX-uOyUIEYIEd .submit-section-title {
  text-align: left;
  color: #000000;
}
.NfqCX-uOyUIEYIEd .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyUIEYIEd .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}
.NfqCX-uOyUIX2BL1 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.NfqCX-uOyUIX2BL1 .dropdown-item:before {
  font-family: animation2 !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;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIX2BL1 .navbar-toggler {
    transform: scale(0.8);
  }
}
.NfqCX-uOyUIX2BL1 .btn {
  font-weight: 400;
}
.NfqCX-uOyUIX2BL1 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.NfqCX-uOyUIX2BL1 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.NfqCX-uOyUIX2BL1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.NfqCX-uOyUIX2BL1 .navbar-brand .navbar-logo a {
  outline: none;
}
.NfqCX-uOyUIX2BL1 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.NfqCX-uOyUIX2BL1 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.NfqCX-uOyUIX2BL1 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyUIX2BL1 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.NfqCX-uOyUIX2BL1 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .NfqCX-uOyUIX2BL1 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.NfqCX-uOyUIX2BL1 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.NfqCX-uOyUIX2BL1 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .NfqCX-uOyUIX2BL1 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.NfqCX-uOyUIX2BL1 .nav-link {
  width: fit-content;
  position: relative;
}
.NfqCX-uOyUIX2BL1 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIX2BL1 .navbar-logo {
    padding-left: 1rem;
  }
}
.NfqCX-uOyUIX2BL1 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIX2BL1 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyUIX2BL1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.NfqCX-uOyUIX2BL1 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIX2BL1 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .NfqCX-uOyUIX2BL1 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.NfqCX-uOyUIX2BL1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.NfqCX-uOyUIX2BL1 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #111418;
  border-radius: 4px !important;
}
.NfqCX-uOyUIX2BL1 .nav-item:focus,
.NfqCX-uOyUIX2BL1 .nav-link:focus {
  outline: none;
}
.NfqCX-uOyUIX2BL1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyUIX2BL1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.NfqCX-uOyUIX2BL1 .dropdown .dropdown-menu .dropdown-item .submit-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.NfqCX-uOyUIX2BL1 .dropdown .dropdown-menu .dropdown-item .submit-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.NfqCX-uOyUIX2BL1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.NfqCX-uOyUIX2BL1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.NfqCX-uOyUIX2BL1 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.NfqCX-uOyUIX2BL1 .navbar.opened {
  transition: all 0.25s;
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.NfqCX-uOyUIX2BL1 .navbar .navbar-logo img {
  width: auto;
}
.NfqCX-uOyUIX2BL1 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed {
  justify-content: center;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .NfqCX-uOyUIX2BL1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.NfqCX-uOyUIX2BL1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .NfqCX-uOyUIX2BL1 .navbar {
    min-height: 72px;
  }
  .NfqCX-uOyUIX2BL1 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .NfqCX-uOyUIX2BL1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .NfqCX-uOyUIX2BL1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .NfqCX-uOyUIX2BL1 .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%;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .NfqCX-uOyUIX2BL1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .NfqCX-uOyUIX2BL1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .NfqCX-uOyUIX2BL1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.NfqCX-uOyUIX2BL1 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.NfqCX-uOyUIX2BL1 .dropdown-item.active,
.NfqCX-uOyUIX2BL1 .dropdown-item:active {
  background-color: transparent;
}
.NfqCX-uOyUIX2BL1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.NfqCX-uOyUIX2BL1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.NfqCX-uOyUIX2BL1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.NfqCX-uOyUIX2BL1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111418;
}
.NfqCX-uOyUIX2BL1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.NfqCX-uOyUIX2BL1 ul.navbar-nav {
  flex-wrap: wrap;
}
.NfqCX-uOyUIX2BL1 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIX2BL1 .navbar-buttons {
    text-align: left;
  }
}
.NfqCX-uOyUIX2BL1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.NfqCX-uOyUIX2BL1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.NfqCX-uOyUIX2BL1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.NfqCX-uOyUIX2BL1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyUIX2BL1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.NfqCX-uOyUIX2BL1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.NfqCX-uOyUIX2BL1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyUIX2BL1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.NfqCX-uOyUIX2BL1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.NfqCX-uOyUIX2BL1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.NfqCX-uOyUIX2BL1 .navbar-dropdown {
  padding: 0;
  background-color: #111418 !important;
}
.NfqCX-uOyUIX2BL1 .opacityScroll {
  background: #111418 !important;
}
.NfqCX-uOyUIX2BL1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.NfqCX-uOyUIX2BL1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyUIX2BL1 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .NfqCX-uOyUIX2BL1 .navbar {
    height: 70px;
  }
  .NfqCX-uOyUIX2BL1 .navbar.opened {
    height: auto;
  }
  .NfqCX-uOyUIX2BL1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.NfqCX-uOyUIX2BL1 .submit-section-btn {
  margin: -0.6rem -0.6rem;
}
.NfqCX-uOyUIX2BL1 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .NfqCX-uOyUIX2BL1 .navbar-brand {
    margin-right: auto;
  }
  .NfqCX-uOyUIX2BL1 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #111418;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .NfqCX-uOyUIX2BL1 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .NfqCX-uOyUIX2BL1 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .NfqCX-uOyUIX2BL1 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .NfqCX-uOyUIX2BL1 .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .NfqCX-uOyUIX2BL1 .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .NfqCX-uOyUIX2BL1 .navbar-collapse {
    padding: 1rem;
  }
}
.NfqCX-uOyUIXH6qp {
  padding-top: 150px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.NfqCX-uOyUIXH6qp .row {
  border-top: 1px solid #000000;
  padding-top: 2rem;
}
.NfqCX-uOyUIXH6qp .submit-text {
  line-height: 1.5;
  color: #000000;
}
.NfqCX-uOyUIXH6qp .submit-section-title {
  text-align: left;
  color: #000000;
}
.NfqCX-uOyUIXH6qp .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyUIXH6qp .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.NfqCX-uOyWPca9op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #0d0f12;
  overflow: hidden;
}
.NfqCX-uOyWPca9op::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.NfqCX-uOyWPca9op .submit-fallback-image.disabled {
  display: none;
}
.NfqCX-uOyWPca9op .submit-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .container {
    padding: 0 22px;
  }
}
.NfqCX-uOyWPca9op .row {
  position: relative;
  z-index: 1;
}
.NfqCX-uOyWPca9op .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.NfqCX-uOyWPca9op .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.NfqCX-uOyWPca9op .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .title-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .title-wrapper .submit-section-title {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .title-wrapper .submit-text {
  margin-bottom: 0;
}
.NfqCX-uOyWPca9op .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .nav-wrapper .submit-section-subtitle {
    text-align: left;
  }
}
.NfqCX-uOyWPca9op .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before,
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .contacts-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap .submit-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before,
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .submit-contact::before {
  width: 100%;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .submit-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper {
    margin-bottom: 20px;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-section-subtitle {
  margin-bottom: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .submit-desc {
  margin-bottom: 5px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .submit-iconfont,
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .submit-iconfont {
  color: #00d0f3;
}
.NfqCX-uOyWPca9op .desc-wrapper .social-wrapper .social-wrap .soc-item a .submit-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.NfqCX-uOyWPca9op .submit-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.NfqCX-uOyWPca9op .submit-section-title {
  color: #00c2ff;
}
.NfqCX-uOyWPca9op .submit-text {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-section-subtitle {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .list {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-contact {
  color: #ffffff;
}
.NfqCX-uOyWPca9op .submit-desc {
  color: #ffffff;
}

/* Base Cookie Banner */
.cookie-banner {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #424a4d;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #424a4d;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    all: unset;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
    display: inline-block;
}

.cookie-btn.Accept {
    background-color: #28a745 !important;
}

.cookie-btn.ignore {
    background-color: #dc3545 !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .cookie-btn {
        width: 100%;
        padding: 10px 0;
    }
}
/* Finish Cookie Banner */
@keyframes coolIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    filter: blur(5px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes coolOut {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
    filter: blur(3px);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 600px;
  width: calc(100% - 32px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: coolIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hide {
  animation: coolOut 0.5s ease-in-out forwards;
  pointer-events: none;
}

#cookieBanner button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.8);
  transform: scale(1);
}

#cookieAcceptBtn {
  background: linear-gradient(145deg, #007bff, #0056b3);
  color: white;
}

#cookieAcceptBtn:hover {
  background: linear-gradient(145deg, #0056b3, #004494);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.3), inset -4px -4px 6px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

#cookieRejectBtn {
  background: linear-gradient(145deg, #f8f9fa, #e0e0e0);
  color: #333;
  border: 1px solid #ccc;
}

#cookieRejectBtn:hover {
  background: linear-gradient(145deg, #e0e0e0, #d6d6d6);
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2), inset -4px -4px 6px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    width: calc(100% - 32px);
    left: 16px;
    bottom: 16px;
    padding: 15px;
  }
  #cookieBanner button {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    width: calc(100% - 16px);
    left: 8px;
    bottom: 16px;
    padding: 10px;
  }
  #cookieBanner button {
    padding: 8px;
    font-size: 12px;
  }
}

/* logoanimations */
@keyframes slowFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.navbar-brand {
    animation: slowFadeIn 2s ease-out;
}
/* endlogoanimations */

/* mainanimations */
/* Style 11: hue-rotate filter */
a, button, .btn {
  transition: filter 0.3s ease;
}
a:active, button:active, .btn:active {
  filter: hue-rotate(90deg);
}
/* endmainanimations */
