body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 0.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.7rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1rem + (1 - 1) * ((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.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #2f559b !important;
}
.bg-info {
  background-color: #353535 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-success,
.btn-success:active {
  background-color: #2f559b !important;
  border-color: #2f559b !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: #1b3158 !important;
  border-color: #1b3158 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1b3158 !important;
  border-color: #1b3158 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2f559b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1b3158 !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: #2f559b !important;
  border-color: #2f559b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #2f559b !important;
}
.text-info {
  color: #353535 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #172a4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #020202 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #353535;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7496d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8a8a8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !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: #ffffff !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWSPxg9NGs {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWSPxg9NGs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSPxg9NGs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSPxg9NGs .mbr-section-title {
  text-align: center;
}
.cid-tX9yP5Rp8b {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9yP5Rp8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9yP5Rp8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9yP5Rp8b .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9yP5Rp8b .container {
    max-width: 1400px;
  }
}
.cid-tX9yP5Rp8b .card {
  margin: auto;
}
.cid-tX9yP5Rp8b .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9yP5Rp8b .item {
  padding: 5px !important;
}
.cid-tX9yP5Rp8b .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9yP5Rp8b .row {
  justify-content: left;
}
.cid-tX9yP5Rp8b .card-title,
.cid-tX9yP5Rp8b .card-box {
  text-align: center;
}
.cid-tX9yP5Rp8b .row .item {
  margin: 10px 0px !important;
}
.cid-tX9yP5Rp8b .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9yP5Rp8b .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9yP5Rp8b .row a:link {
  color: black !important;
}
.cid-tX9yP5Rp8b .row a:visited {
  color: black !important;
}
.cid-tX9yP5Rp8b .active h4 {
  background-color: #444444;
}
.cid-tX9yP5Rp8b .active h4:hover {
  background-color: gray;
}
.cid-tX9yP5Rp8b .active a:link {
  color: white !important;
}
.cid-tX9yP5Rp8b .active a:visited {
  color: white !important;
}
.cid-tWSRLjxAgr {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWSRLjxAgr h6 {
  line-height: 1.2;
}
.cid-tWSRLjxAgr img,
.cid-tWSRLjxAgr .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWSRLjxAgr .item:focus,
.cid-tWSRLjxAgr span:focus {
  outline: none;
}
.cid-tWSRLjxAgr .item {
  cursor: pointer;
}
.cid-tWSRLjxAgr .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWSRLjxAgr .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWSRLjxAgr .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWSRLjxAgr .mbr-section-title {
  color: #000000;
}
.cid-tWSRLjxAgr .mbr-text,
.cid-tWSRLjxAgr .mbr-section-btn {
  color: #000000;
}
.cid-tWSRLjxAgr .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWSRLjxAgr .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWSRLjxAgr .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWSRLjxAgr .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWSRLjxAgr .content-head {
  max-width: 800px;
}
.cid-tWSRLjxAgr .item-title,
.cid-tWSRLjxAgr .mbr-section-btn {
  text-align: center;
}
.cid-tWSRLjxAgr .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWSZnx27Ze {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWSZnx27Ze .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWSZnx27Ze .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWSZnx27Ze .mbr-section-title {
  text-align: center;
}
.cid-tX50an5Rcj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX50an5Rcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX50an5Rcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX50an5Rcj .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX50an5Rcj .container {
    max-width: 1400px;
  }
}
.cid-tX50an5Rcj .card {
  margin: auto;
}
.cid-tX50an5Rcj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX50an5Rcj .item {
  padding: 5px !important;
}
.cid-tX50an5Rcj .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX50an5Rcj .row {
  justify-content: left;
}
.cid-tX50an5Rcj .card-title,
.cid-tX50an5Rcj .card-box {
  text-align: center;
}
.cid-tX50an5Rcj .row .item {
  margin: 10px 0px !important;
}
.cid-tX50an5Rcj .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX50an5Rcj .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX50an5Rcj .row a:link {
  color: black !important;
}
.cid-tX50an5Rcj .row a:visited {
  color: black !important;
}
.cid-tX50an5Rcj .active h4 {
  background-color: #444444;
}
.cid-tX50an5Rcj .active h4:hover {
  background-color: gray;
}
.cid-tX50an5Rcj .active a:link {
  color: white !important;
}
.cid-tX50an5Rcj .active a:visited {
  color: white !important;
}
.cid-tWSZnxyD8z {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWSZnxyD8z h6 {
  line-height: 1.2;
}
.cid-tWSZnxyD8z img,
.cid-tWSZnxyD8z .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWSZnxyD8z .item:focus,
.cid-tWSZnxyD8z span:focus {
  outline: none;
}
.cid-tWSZnxyD8z .item {
  cursor: pointer;
}
.cid-tWSZnxyD8z .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWSZnxyD8z .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWSZnxyD8z .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWSZnxyD8z .mbr-section-title {
  color: #000000;
}
.cid-tWSZnxyD8z .mbr-text,
.cid-tWSZnxyD8z .mbr-section-btn {
  color: #000000;
}
.cid-tWSZnxyD8z .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWSZnxyD8z .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWSZnxyD8z .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWSZnxyD8z .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWSZnxyD8z .content-head {
  max-width: 800px;
}
.cid-tWSZnxyD8z .item-title,
.cid-tWSZnxyD8z .mbr-section-btn {
  text-align: center;
}
.cid-tWSZnxyD8z .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWT279Knea {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWT279Knea .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWT279Knea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWT279Knea .mbr-section-title {
  text-align: center;
}
.cid-tX9z92UpU6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9z92UpU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9z92UpU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9z92UpU6 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9z92UpU6 .container {
    max-width: 1400px;
  }
}
.cid-tX9z92UpU6 .card {
  margin: auto;
}
.cid-tX9z92UpU6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9z92UpU6 .item {
  padding: 5px !important;
}
.cid-tX9z92UpU6 .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9z92UpU6 .row {
  justify-content: left;
}
.cid-tX9z92UpU6 .card-title,
.cid-tX9z92UpU6 .card-box {
  text-align: center;
}
.cid-tX9z92UpU6 .row .item {
  margin: 10px 0px !important;
}
.cid-tX9z92UpU6 .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9z92UpU6 .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9z92UpU6 .row a:link {
  color: black !important;
}
.cid-tX9z92UpU6 .row a:visited {
  color: black !important;
}
.cid-tX9z92UpU6 .active h4 {
  background-color: #444444;
}
.cid-tX9z92UpU6 .active h4:hover {
  background-color: gray;
}
.cid-tX9z92UpU6 .active a:link {
  color: white !important;
}
.cid-tX9z92UpU6 .active a:visited {
  color: white !important;
}
.cid-tWT27akJ3x {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWT27akJ3x h6 {
  line-height: 1.2;
}
.cid-tWT27akJ3x img,
.cid-tWT27akJ3x .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWT27akJ3x .item:focus,
.cid-tWT27akJ3x span:focus {
  outline: none;
}
.cid-tWT27akJ3x .item {
  cursor: pointer;
}
.cid-tWT27akJ3x .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWT27akJ3x .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWT27akJ3x .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWT27akJ3x .mbr-section-title {
  color: #000000;
}
.cid-tWT27akJ3x .mbr-text,
.cid-tWT27akJ3x .mbr-section-btn {
  color: #000000;
}
.cid-tWT27akJ3x .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWT27akJ3x .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWT27akJ3x .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWT27akJ3x .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWT27akJ3x .content-head {
  max-width: 800px;
}
.cid-tWT27akJ3x .item-title,
.cid-tWT27akJ3x .mbr-section-btn {
  text-align: center;
}
.cid-tWT27akJ3x .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-umCUXtPvRC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-umCUXtPvRC .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-umCUXtPvRC .form-group {
  margin-bottom: 1rem;
}
.cid-umCUXtPvRC .form-control {
  border: none !important;
  border-radius: 0rem;
  padding: 0.5rem 1rem;
  background: #f8f8f8;
  color: #000000;
  width: 100%;
}
.cid-umCUXtPvRC textarea.form-control {
  min-height: 96px;
}
.cid-umCUXtPvRC .input-group-btn {
  width: 100%;
}
.cid-umCUXtPvRC .input-group-btn .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-umCUXtPvRC .form-control-label {
  color: #000000;
  font-size: 1rem;
  font-weight: 100 !important;
}
.cid-umCUXtPvRC .google-map {
  width: 100%;
  height: 25rem;
  height: 100%;
}
.cid-umCUXtPvRC .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-umCUXtPvRC .info-row ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cid-umCUXtPvRC .info-row ol li {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff !important;
  padding: 10px;
}
.cid-umCUXtPvRC .info-value {
  color: #efefef;
}
@media (max-width: 991px), (max-width: 767px) {
  .cid-umCUXtPvRC .form-wrapper {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umCUXtPvRC .form-subtitle {
    text-align: center;
  }
}
.cid-umCUXtPvRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-umCUXtPvRC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umCUXtPvRC .form-title DIV {
  text-align: left;
}
.cid-umCUXtPvRC .first-column {
  text-align: center;
  color: #000000;
}
.cid-umCUXtPvRC .google-map iframe {
  border-radius: 2rem !important;
}
.cid-umCUXtPvRC .main-title {
  color: #000000;
}
.cid-umCUXtPvRC .form-title {
  color: #000000;
}
.cid-umCUXtPvRC LABEL {
  color: #000000;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWTg8vu6Fu {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWTg8vu6Fu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTg8vu6Fu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTg8vu6Fu .mbr-section-title {
  text-align: center;
}
.cid-tXadeNoqf0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tXadeNoqf0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXadeNoqf0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXadeNoqf0 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tXadeNoqf0 .container {
    max-width: 1400px;
  }
}
.cid-tXadeNoqf0 .card {
  margin: auto;
}
.cid-tXadeNoqf0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tXadeNoqf0 .item {
  padding: 5px !important;
}
.cid-tXadeNoqf0 .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tXadeNoqf0 .row {
  justify-content: left;
}
.cid-tXadeNoqf0 .card-title,
.cid-tXadeNoqf0 .card-box {
  text-align: center;
}
.cid-tXadeNoqf0 .row .item {
  margin: 10px 0px !important;
}
.cid-tXadeNoqf0 .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tXadeNoqf0 .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tXadeNoqf0 .row a:link {
  color: black !important;
}
.cid-tXadeNoqf0 .row a:visited {
  color: black !important;
}
.cid-tXadeNoqf0 .active h4 {
  background-color: #444444;
}
.cid-tXadeNoqf0 .active h4:hover {
  background-color: gray;
}
.cid-tXadeNoqf0 .active a:link {
  color: white !important;
}
.cid-tXadeNoqf0 .active a:visited {
  color: white !important;
}
.cid-v6IQFkvgOI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v6IQFkvgOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6IQFkvgOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6IQFkvgOI .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v6IQFkvgOI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v6IQFkvgOI .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v6IQFkvgOI .panel-body,
.cid-v6IQFkvgOI .card-header {
  padding: 1rem 0;
}
.cid-v6IQFkvgOI .panel-title-edit {
  color: #000000;
}
.cid-tWY65LpwKk {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tWY65LpwKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWY65LpwKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWY65LpwKk .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tWY65LpwKk .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWY65LpwKk .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-tWY65LpwKk .panel-body,
.cid-tWY65LpwKk .card-header {
  padding: 1rem 0;
}
.cid-tWY65LpwKk .panel-title-edit {
  color: #000000;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWTjvHMYm8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWTjvHMYm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTjvHMYm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTjvHMYm8 .mbr-section-title {
  text-align: center;
}
.cid-tWTjGWn19S {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWTjGWn19S .line {
  background-color: #dfe3da;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-veh7k10yXC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-veh7k10yXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-veh7k10yXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veh7k10yXC .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-veh7k10yXC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-veh7k10yXC .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-veh7k10yXC .panel-body,
.cid-veh7k10yXC .card-header {
  padding: 1rem 0;
}
.cid-veh7k10yXC .panel-title-edit {
  color: #000000;
}
.cid-vcYlRLjjUe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcYlRLjjUe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcYlRLjjUe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcYlRLjjUe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vcYlRLjjUe .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vcYlRLjjUe .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-vcYlRLjjUe .panel-body,
.cid-vcYlRLjjUe .card-header {
  padding: 1rem 0;
}
.cid-vcYlRLjjUe .panel-title-edit {
  color: #000000;
}
.cid-vcbYfh5SVg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vcbYfh5SVg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcbYfh5SVg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcbYfh5SVg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vcbYfh5SVg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vcbYfh5SVg .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-vcbYfh5SVg .panel-body,
.cid-vcbYfh5SVg .card-header {
  padding: 1rem 0;
}
.cid-vcbYfh5SVg .panel-title-edit {
  color: #000000;
}
.cid-vaqLyHjnXo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vaqLyHjnXo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaqLyHjnXo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaqLyHjnXo .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vaqLyHjnXo .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vaqLyHjnXo .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-vaqLyHjnXo .panel-body,
.cid-vaqLyHjnXo .card-header {
  padding: 1rem 0;
}
.cid-vaqLyHjnXo .panel-title-edit {
  color: #000000;
}
.cid-v9LBaM6DnX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v9LBaM6DnX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LBaM6DnX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9LBaM6DnX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v9LBaM6DnX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v9LBaM6DnX .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v9LBaM6DnX .panel-body,
.cid-v9LBaM6DnX .card-header {
  padding: 1rem 0;
}
.cid-v9LBaM6DnX .panel-title-edit {
  color: #000000;
}
.cid-v8ayj9B3Cr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v8ayj9B3Cr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8ayj9B3Cr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8ayj9B3Cr .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v8ayj9B3Cr .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v8ayj9B3Cr .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v8ayj9B3Cr .panel-body,
.cid-v8ayj9B3Cr .card-header {
  padding: 1rem 0;
}
.cid-v8ayj9B3Cr .panel-title-edit {
  color: #000000;
}
.cid-v7zz63OUux {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v7zz63OUux .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7zz63OUux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7zz63OUux .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v7zz63OUux .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v7zz63OUux .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v7zz63OUux .panel-body,
.cid-v7zz63OUux .card-header {
  padding: 1rem 0;
}
.cid-v7zz63OUux .panel-title-edit {
  color: #000000;
}
.cid-v5O6yWrd5V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v5O6yWrd5V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5O6yWrd5V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5O6yWrd5V .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v5O6yWrd5V .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v5O6yWrd5V .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v5O6yWrd5V .panel-body,
.cid-v5O6yWrd5V .card-header {
  padding: 1rem 0;
}
.cid-v5O6yWrd5V .panel-title-edit {
  color: #000000;
}
.cid-v3Dqi61v3k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v3Dqi61v3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Dqi61v3k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Dqi61v3k .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v3Dqi61v3k .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3Dqi61v3k .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v3Dqi61v3k .panel-body,
.cid-v3Dqi61v3k .card-header {
  padding: 1rem 0;
}
.cid-v3Dqi61v3k .panel-title-edit {
  color: #000000;
}
.cid-v1JdxUC7Th {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1JdxUC7Th .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1JdxUC7Th .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1JdxUC7Th .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v1JdxUC7Th .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1JdxUC7Th .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v1JdxUC7Th .panel-body,
.cid-v1JdxUC7Th .card-header {
  padding: 1rem 0;
}
.cid-v1JdxUC7Th .panel-title-edit {
  color: #000000;
}
.cid-v1aK5Yi52F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1aK5Yi52F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1aK5Yi52F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1aK5Yi52F .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v1aK5Yi52F .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1aK5Yi52F .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v1aK5Yi52F .panel-body,
.cid-v1aK5Yi52F .card-header {
  padding: 1rem 0;
}
.cid-v1aK5Yi52F .panel-title-edit {
  color: #000000;
}
.cid-v1aJSsj9u8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1aJSsj9u8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1aJSsj9u8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1aJSsj9u8 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v1aJSsj9u8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1aJSsj9u8 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v1aJSsj9u8 .panel-body,
.cid-v1aJSsj9u8 .card-header {
  padding: 1rem 0;
}
.cid-v1aJSsj9u8 .panel-title-edit {
  color: #000000;
}
.cid-v1aJzp04dI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1aJzp04dI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1aJzp04dI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1aJzp04dI .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v1aJzp04dI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1aJzp04dI .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v1aJzp04dI .panel-body,
.cid-v1aJzp04dI .card-header {
  padding: 1rem 0;
}
.cid-v1aJzp04dI .panel-title-edit {
  color: #000000;
}
.cid-v1aJlEnXrl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1aJlEnXrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1aJlEnXrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1aJlEnXrl .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v1aJlEnXrl .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v1aJlEnXrl .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v1aJlEnXrl .panel-body,
.cid-v1aJlEnXrl .card-header {
  padding: 1rem 0;
}
.cid-v1aJlEnXrl .panel-title-edit {
  color: #000000;
}
.cid-uVBdrCVoes {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uVBdrCVoes .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVBdrCVoes .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVBdrCVoes .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uVBdrCVoes .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uVBdrCVoes .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uVBdrCVoes .panel-body,
.cid-uVBdrCVoes .card-header {
  padding: 1rem 0;
}
.cid-uVBdrCVoes .panel-title-edit {
  color: #000000;
}
.cid-uUXzKh62Os {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uUXzKh62Os .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUXzKh62Os .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUXzKh62Os .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uUXzKh62Os .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uUXzKh62Os .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uUXzKh62Os .panel-body,
.cid-uUXzKh62Os .card-header {
  padding: 1rem 0;
}
.cid-uUXzKh62Os .panel-title-edit {
  color: #000000;
}
.cid-uTVH3KR98y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTVH3KR98y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTVH3KR98y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTVH3KR98y .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uTVH3KR98y .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTVH3KR98y .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uTVH3KR98y .panel-body,
.cid-uTVH3KR98y .card-header {
  padding: 1rem 0;
}
.cid-uTVH3KR98y .panel-title-edit {
  color: #000000;
}
.cid-uSSR1VgFMB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uSSR1VgFMB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSSR1VgFMB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSSR1VgFMB .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uSSR1VgFMB .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uSSR1VgFMB .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uSSR1VgFMB .panel-body,
.cid-uSSR1VgFMB .card-header {
  padding: 1rem 0;
}
.cid-uSSR1VgFMB .panel-title-edit {
  color: #000000;
}
.cid-uRJoUwEyY6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uRJoUwEyY6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRJoUwEyY6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRJoUwEyY6 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uRJoUwEyY6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uRJoUwEyY6 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uRJoUwEyY6 .panel-body,
.cid-uRJoUwEyY6 .card-header {
  padding: 1rem 0;
}
.cid-uRJoUwEyY6 .panel-title-edit {
  color: #000000;
}
.cid-uRce1KAbUs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uRce1KAbUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRce1KAbUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRce1KAbUs .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uRce1KAbUs .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uRce1KAbUs .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uRce1KAbUs .panel-body,
.cid-uRce1KAbUs .card-header {
  padding: 1rem 0;
}
.cid-uRce1KAbUs .panel-title-edit {
  color: #000000;
}
.cid-uAt8uX5UQK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uAt8uX5UQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAt8uX5UQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAt8uX5UQK .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uAt8uX5UQK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAt8uX5UQK .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uAt8uX5UQK .panel-body,
.cid-uAt8uX5UQK .card-header {
  padding: 1rem 0;
}
.cid-uAt8uX5UQK .panel-title-edit {
  color: #000000;
}
.cid-uy3grqJA3y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uy3grqJA3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy3grqJA3y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy3grqJA3y .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uy3grqJA3y .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uy3grqJA3y .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uy3grqJA3y .panel-body,
.cid-uy3grqJA3y .card-header {
  padding: 1rem 0;
}
.cid-uy3grqJA3y .panel-title-edit {
  color: #000000;
}
.cid-uvtf2Unl8j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvtf2Unl8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvtf2Unl8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvtf2Unl8j .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uvtf2Unl8j .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uvtf2Unl8j .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uvtf2Unl8j .panel-body,
.cid-uvtf2Unl8j .card-header {
  padding: 1rem 0;
}
.cid-uvtf2Unl8j .panel-title-edit {
  color: #000000;
}
.cid-utuzw5MwGq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utuzw5MwGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-utuzw5MwGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utuzw5MwGq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-utuzw5MwGq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-utuzw5MwGq .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-utuzw5MwGq .panel-body,
.cid-utuzw5MwGq .card-header {
  padding: 1rem 0;
}
.cid-utuzw5MwGq .panel-title-edit {
  color: #000000;
}
.cid-uqGFh51AUP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqGFh51AUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGFh51AUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGFh51AUP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqGFh51AUP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqGFh51AUP .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uqGFh51AUP .panel-body,
.cid-uqGFh51AUP .card-header {
  padding: 1rem 0;
}
.cid-uqGFh51AUP .panel-title-edit {
  color: #000000;
}
.cid-unaGNLy4a2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unaGNLy4a2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unaGNLy4a2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unaGNLy4a2 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-unaGNLy4a2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-unaGNLy4a2 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-unaGNLy4a2 .panel-body,
.cid-unaGNLy4a2 .card-header {
  padding: 1rem 0;
}
.cid-unaGNLy4a2 .panel-title-edit {
  color: #000000;
}
.cid-uoSPHEKpM0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoSPHEKpM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoSPHEKpM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoSPHEKpM0 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uoSPHEKpM0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uoSPHEKpM0 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uoSPHEKpM0 .panel-body,
.cid-uoSPHEKpM0 .card-header {
  padding: 1rem 0;
}
.cid-uoSPHEKpM0 .panel-title-edit {
  color: #000000;
}
.cid-unzzc205aJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unzzc205aJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzzc205aJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzzc205aJ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-unzzc205aJ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-unzzc205aJ .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-unzzc205aJ .panel-body,
.cid-unzzc205aJ .card-header {
  padding: 1rem 0;
}
.cid-unzzc205aJ .panel-title-edit {
  color: #000000;
}
.cid-unzuAZhMBN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unzuAZhMBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzuAZhMBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzuAZhMBN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-unzuAZhMBN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-unzuAZhMBN .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-unzuAZhMBN .panel-body,
.cid-unzuAZhMBN .card-header {
  padding: 1rem 0;
}
.cid-unzuAZhMBN .panel-title-edit {
  color: #000000;
}
.cid-unzulxrrde {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unzulxrrde .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzulxrrde .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzulxrrde .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-unzulxrrde .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-unzulxrrde .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-unzulxrrde .panel-body,
.cid-unzulxrrde .card-header {
  padding: 1rem 0;
}
.cid-unzulxrrde .panel-title-edit {
  color: #000000;
}
.cid-unztLqhnhz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unztLqhnhz .mbr-fallback-image.disabled {
  display: none;
}
.cid-unztLqhnhz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unztLqhnhz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-unztLqhnhz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-unztLqhnhz .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-unztLqhnhz .panel-body,
.cid-unztLqhnhz .card-header {
  padding: 1rem 0;
}
.cid-unztLqhnhz .panel-title-edit {
  color: #000000;
}
.cid-uhD38fOm1r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhD38fOm1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhD38fOm1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhD38fOm1r .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uhD38fOm1r .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhD38fOm1r .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uhD38fOm1r .panel-body,
.cid-uhD38fOm1r .card-header {
  padding: 1rem 0;
}
.cid-uhD38fOm1r .panel-title-edit {
  color: #000000;
}
.cid-uhD2QNICxP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhD2QNICxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhD2QNICxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhD2QNICxP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uhD2QNICxP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhD2QNICxP .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uhD2QNICxP .panel-body,
.cid-uhD2QNICxP .card-header {
  padding: 1rem 0;
}
.cid-uhD2QNICxP .panel-title-edit {
  color: #000000;
}
.cid-ufrk7BRwBG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ufrk7BRwBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufrk7BRwBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufrk7BRwBG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ufrk7BRwBG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ufrk7BRwBG .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-ufrk7BRwBG .panel-body,
.cid-ufrk7BRwBG .card-header {
  padding: 1rem 0;
}
.cid-ufrk7BRwBG .panel-title-edit {
  color: #000000;
}
.cid-ue99z2ZxLF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ue99z2ZxLF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue99z2ZxLF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue99z2ZxLF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ue99z2ZxLF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ue99z2ZxLF .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-ue99z2ZxLF .panel-body,
.cid-ue99z2ZxLF .card-header {
  padding: 1rem 0;
}
.cid-ue99z2ZxLF .panel-title-edit {
  color: #000000;
}
.cid-ue997KfhLT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ue997KfhLT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue997KfhLT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue997KfhLT .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ue997KfhLT .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ue997KfhLT .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-ue997KfhLT .panel-body,
.cid-ue997KfhLT .card-header {
  padding: 1rem 0;
}
.cid-ue997KfhLT .panel-title-edit {
  color: #000000;
}
.cid-ucl1eGkgXQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ucl1eGkgXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucl1eGkgXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucl1eGkgXQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucl1eGkgXQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucl1eGkgXQ .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-ucl1eGkgXQ .panel-body,
.cid-ucl1eGkgXQ .card-header {
  padding: 1rem 0;
}
.cid-ucl1eGkgXQ .panel-title-edit {
  color: #000000;
}
.cid-uancxGe3Zc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uancxGe3Zc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uancxGe3Zc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uancxGe3Zc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uancxGe3Zc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uancxGe3Zc .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uancxGe3Zc .panel-body,
.cid-uancxGe3Zc .card-header {
  padding: 1rem 0;
}
.cid-uancxGe3Zc .panel-title-edit {
  color: #000000;
}
.cid-uancjabjIu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uancjabjIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uancjabjIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uancjabjIu .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uancjabjIu .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uancjabjIu .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uancjabjIu .panel-body,
.cid-uancjabjIu .card-header {
  padding: 1rem 0;
}
.cid-uancjabjIu .panel-title-edit {
  color: #000000;
}
.cid-u7qwHsjGOn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u7qwHsjGOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7qwHsjGOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7qwHsjGOn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u7qwHsjGOn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7qwHsjGOn .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-u7qwHsjGOn .panel-body,
.cid-u7qwHsjGOn .card-header {
  padding: 1rem 0;
}
.cid-u7qwHsjGOn .panel-title-edit {
  color: #000000;
}
.cid-u6jutb5MpO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u6jutb5MpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6jutb5MpO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6jutb5MpO .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u6jutb5MpO .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u6jutb5MpO .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-u6jutb5MpO .panel-body,
.cid-u6jutb5MpO .card-header {
  padding: 1rem 0;
}
.cid-u6jutb5MpO .panel-title-edit {
  color: #000000;
}
.cid-u4IiyNqpWj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u4IiyNqpWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4IiyNqpWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4IiyNqpWj .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u4IiyNqpWj .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u4IiyNqpWj .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-u4IiyNqpWj .panel-body,
.cid-u4IiyNqpWj .card-header {
  padding: 1rem 0;
}
.cid-u4IiyNqpWj .panel-title-edit {
  color: #000000;
}
.cid-u2HTl4Odj2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2HTl4Odj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2HTl4Odj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2HTl4Odj2 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u2HTl4Odj2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u2HTl4Odj2 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-u2HTl4Odj2 .panel-body,
.cid-u2HTl4Odj2 .card-header {
  padding: 1rem 0;
}
.cid-u2HTl4Odj2 .panel-title-edit {
  color: #000000;
}
.cid-u1pywOdzHN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u1pywOdzHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1pywOdzHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1pywOdzHN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u1pywOdzHN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u1pywOdzHN .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-u1pywOdzHN .panel-body,
.cid-u1pywOdzHN .card-header {
  padding: 1rem 0;
}
.cid-u1pywOdzHN .panel-title-edit {
  color: #000000;
}
.cid-tZqGYQSAme {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tZqGYQSAme .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZqGYQSAme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZqGYQSAme .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tZqGYQSAme .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZqGYQSAme .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-tZqGYQSAme .panel-body,
.cid-tZqGYQSAme .card-header {
  padding: 1rem 0;
}
.cid-tZqGYQSAme .panel-title-edit {
  color: #000000;
}
.cid-tWY2yJkYLb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWY2yJkYLb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWY2yJkYLb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWY2yJkYLb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tWY2yJkYLb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWY2yJkYLb .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-tWY2yJkYLb .panel-body,
.cid-tWY2yJkYLb .card-header {
  padding: 1rem 0;
}
.cid-tWY2yJkYLb .panel-title-edit {
  color: #000000;
}
.cid-tWY4iMeg2O {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWY4iMeg2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWY4iMeg2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWY4iMeg2O .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tWY4iMeg2O .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tWY4iMeg2O .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-tWY4iMeg2O .panel-body,
.cid-tWY4iMeg2O .card-header {
  padding: 1rem 0;
}
.cid-tWY4iMeg2O .panel-title-edit {
  color: #000000;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWTnhNj1Hc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWTnhNj1Hc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTnhNj1Hc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTnhNj1Hc .mbr-section-title {
  text-align: center;
}
.cid-tXadBzaJND {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXadBzaJND .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXadBzaJND .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXadBzaJND .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tXadBzaJND .container {
    max-width: 1400px;
  }
}
.cid-tXadBzaJND .card {
  margin: auto;
}
.cid-tXadBzaJND .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tXadBzaJND .item {
  padding: 5px !important;
}
.cid-tXadBzaJND .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tXadBzaJND .row {
  justify-content: left;
}
.cid-tXadBzaJND .card-title,
.cid-tXadBzaJND .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-tXadBzaJND .row .item {
  margin: 10px 0px !important;
}
.cid-tXadBzaJND .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tXadBzaJND .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tXadBzaJND .row a:link {
  color: black !important;
}
.cid-tXadBzaJND .row a:visited {
  color: black !important;
}
.cid-tXadBzaJND .active h4 {
  background-color: #444444;
}
.cid-tXadBzaJND .active h4:hover {
  background-color: gray;
}
.cid-tXadBzaJND .active a:link {
  color: white !important;
}
.cid-tXadBzaJND .active a:visited {
  color: white !important;
}
.cid-tXaekCTLYP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXaekCTLYP .line {
  background-color: #bbbbbb;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTnxHqvdO {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tWTnxHqvdO img,
.cid-tWTnxHqvdO .item-img {
  width: 100%;
}
.cid-tWTnxHqvdO .item:focus,
.cid-tWTnxHqvdO span:focus {
  outline: none;
}
.cid-tWTnxHqvdO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWTnxHqvdO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWTnxHqvdO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tWTnxHqvdO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWTnxHqvdO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tWTnxHqvdO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tWTnxHqvdO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWTnxHqvdO .mbr-section-title {
  color: #232323;
}
.cid-tWTnxHqvdO .mbr-text,
.cid-tWTnxHqvdO .mbr-section-btn {
  text-align: center;
}
.cid-tWTnxHqvdO .item-title {
  text-align: center;
}
.cid-tWTnxHqvdO .item-subtitle {
  text-align: left;
}
.cid-tXaef175on {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXaef175on .line {
  background-color: #bbbbbb;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTrZl2NAi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWTrZl2NAi img,
.cid-tWTrZl2NAi .item-img {
  width: 100%;
}
.cid-tWTrZl2NAi .item:focus,
.cid-tWTrZl2NAi span:focus {
  outline: none;
}
.cid-tWTrZl2NAi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWTrZl2NAi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWTrZl2NAi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWTrZl2NAi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tWTrZl2NAi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWTrZl2NAi .mbr-section-title {
  color: #232323;
}
.cid-tWTrZl2NAi .mbr-text,
.cid-tWTrZl2NAi .mbr-section-btn {
  text-align: center;
}
.cid-tWTrZl2NAi .item-title {
  text-align: center;
}
.cid-tWTrZl2NAi .item-subtitle {
  text-align: left;
}
.cid-tWTtLukYMz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWTtLukYMz .line {
  background-color: #bbbbbb;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWTtNIafAn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWTtNIafAn img,
.cid-tWTtNIafAn .item-img {
  width: 100%;
}
.cid-tWTtNIafAn .item:focus,
.cid-tWTtNIafAn span:focus {
  outline: none;
}
.cid-tWTtNIafAn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWTtNIafAn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWTtNIafAn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tWTtNIafAn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWTtNIafAn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tWTtNIafAn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tWTtNIafAn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWTtNIafAn .mbr-section-title {
  color: #232323;
}
.cid-tWTtNIafAn .mbr-text,
.cid-tWTtNIafAn .mbr-section-btn {
  text-align: center;
}
.cid-tWTtNIafAn .item-title {
  text-align: center;
}
.cid-tWTtNIafAn .item-subtitle {
  text-align: left;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWXKy1gR9A {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWXKy1gR9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWXKy1gR9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWXKy1gR9A .mbr-section-title {
  text-align: center;
}
.cid-tYoNbPhRCE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tYoNbPhRCE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYoNbPhRCE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYoNbPhRCE .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tYoNbPhRCE .container {
    max-width: 1400px;
  }
}
.cid-tYoNbPhRCE .card {
  margin: auto;
}
.cid-tYoNbPhRCE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tYoNbPhRCE .item {
  padding: 5px !important;
}
.cid-tYoNbPhRCE .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tYoNbPhRCE .row {
  justify-content: left;
}
.cid-tYoNbPhRCE .card-title,
.cid-tYoNbPhRCE .card-box {
  text-align: center;
}
.cid-tYoNbPhRCE .row .item {
  margin: 10px 0px !important;
}
.cid-tYoNbPhRCE .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tYoNbPhRCE .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tYoNbPhRCE .row a:link {
  color: black !important;
}
.cid-tYoNbPhRCE .row a:visited {
  color: black !important;
}
.cid-tYoNbPhRCE .active h4 {
  background-color: #444444;
}
.cid-tYoNbPhRCE .active h4:hover {
  background-color: gray;
}
.cid-tYoNbPhRCE .active a:link {
  color: white !important;
}
.cid-tYoNbPhRCE .active a:visited {
  color: white !important;
}
.cid-tWXL2U3u5y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWXL2U3u5y .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWXL7mxOQd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWXL7mxOQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWXL7mxOQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWXL7mxOQd ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tWXL7mxOQd li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tWXL7mxOQd ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tWXL7mxOQd H3 {
  text-align: center;
}
.cid-tWXLyldEzl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tWXLyldEzl .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tYiADZtqUB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tYiADZtqUB .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-tYiADZtqUB .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tYiADZtqUB .row {
    row-gap: 40px;
  }
}
.cid-tYiADZtqUB .mbr-section-head {
  padding-bottom: 50px;
}
.cid-tYiADZtqUB .mbr-section-title {
  color: #000000;
}
.cid-tYiADZtqUB .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tYiADZtqUB .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tYiADZtqUB .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 3));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-tYiADZtqUB .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-tYiADZtqUB .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-tYiADZtqUB .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-tYiADZtqUB .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-tYiADZtqUB .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tYiADZtqUB .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-tYiADZtqUB .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-tYiADZtqUB .item-content {
  margin-top: 32px;
}
.cid-tYiADZtqUB .item-title {
  color: #303030;
}
.cid-tYiADZtqUB .mbr-text {
  margin-top: 11px;
  color: #303030;
}
.cid-tYiADZtqUB .item-number {
  color: #9b8db7;
  margin-top: 22px;
}
.cid-tYiADZtqUB .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #9b8db7;
}
.cid-tYiADZtqUB .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-tYiADZtqUB .item-text {
  color: #9b8db7;
}
.cid-tYiAok44oH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tYiAok44oH .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-tYiAok44oH .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tYiAok44oH .row {
    row-gap: 40px;
  }
}
.cid-tYiAok44oH .mbr-section-head {
  padding-bottom: 50px;
}
.cid-tYiAok44oH .mbr-section-title {
  color: #000000;
}
.cid-tYiAok44oH .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tYiAok44oH .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tYiAok44oH .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 2));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-tYiAok44oH .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-tYiAok44oH .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-tYiAok44oH .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-tYiAok44oH .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-tYiAok44oH .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tYiAok44oH .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-tYiAok44oH .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-tYiAok44oH .item-content {
  margin-top: 32px;
}
.cid-tYiAok44oH .item-title {
  color: #303030;
}
.cid-tYiAok44oH .mbr-text {
  margin-top: 11px;
  color: #303030;
}
.cid-tYiAok44oH .item-number {
  color: #9b8db7;
  margin-top: 22px;
}
.cid-tYiAok44oH .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #9b8db7;
}
.cid-tYiAok44oH .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-tYiAok44oH .item-text {
  color: #9b8db7;
}
.cid-tYiAcQh0EY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tYiAcQh0EY .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-tYiAcQh0EY .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tYiAcQh0EY .row {
    row-gap: 40px;
  }
}
.cid-tYiAcQh0EY .mbr-section-head {
  padding-bottom: 50px;
}
.cid-tYiAcQh0EY .mbr-section-title {
  color: #000000;
}
.cid-tYiAcQh0EY .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tYiAcQh0EY .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tYiAcQh0EY .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 2));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-tYiAcQh0EY .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-tYiAcQh0EY .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-tYiAcQh0EY .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-tYiAcQh0EY .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-tYiAcQh0EY .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tYiAcQh0EY .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-tYiAcQh0EY .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-tYiAcQh0EY .item-content {
  margin-top: 32px;
}
.cid-tYiAcQh0EY .item-title {
  color: #303030;
}
.cid-tYiAcQh0EY .mbr-text {
  margin-top: 11px;
  color: #303030;
}
.cid-tYiAcQh0EY .item-number {
  color: #9b8db7;
  margin-top: 22px;
}
.cid-tYiAcQh0EY .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #9b8db7;
}
.cid-tYiAcQh0EY .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-tYiAcQh0EY .item-text {
  color: #9b8db7;
}
.cid-tYize5Mn8B {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tYize5Mn8B .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-tYize5Mn8B .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tYize5Mn8B .row {
    row-gap: 40px;
  }
}
.cid-tYize5Mn8B .mbr-section-head {
  padding-bottom: 50px;
}
.cid-tYize5Mn8B .mbr-section-title {
  color: #000000;
}
.cid-tYize5Mn8B .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tYize5Mn8B .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tYize5Mn8B .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 3));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-tYize5Mn8B .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-tYize5Mn8B .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-tYize5Mn8B .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-tYize5Mn8B .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-tYize5Mn8B .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tYize5Mn8B .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-tYize5Mn8B .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-tYize5Mn8B .item-content {
  margin-top: 32px;
}
.cid-tYize5Mn8B .item-title {
  color: #303030;
}
.cid-tYize5Mn8B .mbr-text {
  margin-top: 11px;
  color: #303030;
}
.cid-tYize5Mn8B .item-number {
  color: #9b8db7;
  margin-top: 22px;
}
.cid-tYize5Mn8B .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #9b8db7;
}
.cid-tYize5Mn8B .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-tYize5Mn8B .item-text {
  color: #9b8db7;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWXYD2bTYx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWXYD2bTYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWXYD2bTYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWXYD2bTYx .mbr-section-title {
  text-align: center;
}
.cid-tX9zlgTRv1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9zlgTRv1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9zlgTRv1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9zlgTRv1 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9zlgTRv1 .container {
    max-width: 1400px;
  }
}
.cid-tX9zlgTRv1 .card {
  margin: auto;
}
.cid-tX9zlgTRv1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9zlgTRv1 .item {
  padding: 5px !important;
}
.cid-tX9zlgTRv1 .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9zlgTRv1 .row {
  justify-content: left;
}
.cid-tX9zlgTRv1 .card-title,
.cid-tX9zlgTRv1 .card-box {
  text-align: center;
}
.cid-tX9zlgTRv1 .row .item {
  margin: 10px 0px !important;
}
.cid-tX9zlgTRv1 .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9zlgTRv1 .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9zlgTRv1 .row a:link {
  color: black !important;
}
.cid-tX9zlgTRv1 .row a:visited {
  color: black !important;
}
.cid-tX9zlgTRv1 .active h4 {
  background-color: #444444;
}
.cid-tX9zlgTRv1 .active h4:hover {
  background-color: gray;
}
.cid-tX9zlgTRv1 .active a:link {
  color: white !important;
}
.cid-tX9zlgTRv1 .active a:visited {
  color: white !important;
}
.cid-tWXYD2oEPc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWXYD2oEPc h6 {
  line-height: 1.2;
}
.cid-tWXYD2oEPc img,
.cid-tWXYD2oEPc .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWXYD2oEPc .item:focus,
.cid-tWXYD2oEPc span:focus {
  outline: none;
}
.cid-tWXYD2oEPc .item {
  cursor: pointer;
}
.cid-tWXYD2oEPc .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWXYD2oEPc .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWXYD2oEPc .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWXYD2oEPc .mbr-section-title {
  color: #000000;
}
.cid-tWXYD2oEPc .mbr-text,
.cid-tWXYD2oEPc .mbr-section-btn {
  color: #000000;
}
.cid-tWXYD2oEPc .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWXYD2oEPc .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWXYD2oEPc .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWXYD2oEPc .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWXYD2oEPc .content-head {
  max-width: 800px;
}
.cid-tWXYD2oEPc .item-title,
.cid-tWXYD2oEPc .mbr-section-btn {
  text-align: center;
}
.cid-tWXYD2oEPc .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWYeMyeDcW {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWYeMyeDcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYeMyeDcW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYeMyeDcW .mbr-section-title {
  text-align: center;
}
.cid-tX9ztN33ZI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9ztN33ZI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9ztN33ZI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9ztN33ZI .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9ztN33ZI .container {
    max-width: 1400px;
  }
}
.cid-tX9ztN33ZI .card {
  margin: auto;
}
.cid-tX9ztN33ZI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9ztN33ZI .item {
  padding: 5px !important;
}
.cid-tX9ztN33ZI .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9ztN33ZI .row {
  justify-content: left;
}
.cid-tX9ztN33ZI .card-title,
.cid-tX9ztN33ZI .card-box {
  text-align: center;
}
.cid-tX9ztN33ZI .row .item {
  margin: 10px 0px !important;
}
.cid-tX9ztN33ZI .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9ztN33ZI .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9ztN33ZI .row a:link {
  color: black !important;
}
.cid-tX9ztN33ZI .row a:visited {
  color: black !important;
}
.cid-tX9ztN33ZI .active h4 {
  background-color: #444444;
}
.cid-tX9ztN33ZI .active h4:hover {
  background-color: gray;
}
.cid-tX9ztN33ZI .active a:link {
  color: white !important;
}
.cid-tX9ztN33ZI .active a:visited {
  color: white !important;
}
.cid-tWYeMyFcg7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWYeMyFcg7 h6 {
  line-height: 1.2;
}
.cid-tWYeMyFcg7 img,
.cid-tWYeMyFcg7 .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWYeMyFcg7 .item:focus,
.cid-tWYeMyFcg7 span:focus {
  outline: none;
}
.cid-tWYeMyFcg7 .item {
  cursor: pointer;
}
.cid-tWYeMyFcg7 .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWYeMyFcg7 .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWYeMyFcg7 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWYeMyFcg7 .mbr-section-title {
  color: #000000;
}
.cid-tWYeMyFcg7 .mbr-text,
.cid-tWYeMyFcg7 .mbr-section-btn {
  color: #000000;
}
.cid-tWYeMyFcg7 .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWYeMyFcg7 .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWYeMyFcg7 .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWYeMyFcg7 .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWYeMyFcg7 .content-head {
  max-width: 800px;
}
.cid-tWYeMyFcg7 .item-title,
.cid-tWYeMyFcg7 .mbr-section-btn {
  text-align: center;
}
.cid-tWYeMyFcg7 .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWYB2XAuyQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWYB2XAuyQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYB2XAuyQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYB2XAuyQ .mbr-section-title {
  text-align: center;
}
.cid-tX9zC7orVM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9zC7orVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9zC7orVM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9zC7orVM .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9zC7orVM .container {
    max-width: 1400px;
  }
}
.cid-tX9zC7orVM .card {
  margin: auto;
}
.cid-tX9zC7orVM .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9zC7orVM .item {
  padding: 5px !important;
}
.cid-tX9zC7orVM .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9zC7orVM .row {
  justify-content: left;
}
.cid-tX9zC7orVM .card-title,
.cid-tX9zC7orVM .card-box {
  text-align: center;
}
.cid-tX9zC7orVM .row .item {
  margin: 10px 0px !important;
}
.cid-tX9zC7orVM .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9zC7orVM .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9zC7orVM .row a:link {
  color: black !important;
}
.cid-tX9zC7orVM .row a:visited {
  color: black !important;
}
.cid-tX9zC7orVM .active h4 {
  background-color: #444444;
}
.cid-tX9zC7orVM .active h4:hover {
  background-color: gray;
}
.cid-tX9zC7orVM .active a:link {
  color: white !important;
}
.cid-tX9zC7orVM .active a:visited {
  color: white !important;
}
.cid-tWYB2Y5g3J {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWYB2Y5g3J h6 {
  line-height: 1.2;
}
.cid-tWYB2Y5g3J img,
.cid-tWYB2Y5g3J .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWYB2Y5g3J .item:focus,
.cid-tWYB2Y5g3J span:focus {
  outline: none;
}
.cid-tWYB2Y5g3J .item {
  cursor: pointer;
}
.cid-tWYB2Y5g3J .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWYB2Y5g3J .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWYB2Y5g3J .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWYB2Y5g3J .mbr-section-title {
  color: #000000;
}
.cid-tWYB2Y5g3J .mbr-text,
.cid-tWYB2Y5g3J .mbr-section-btn {
  color: #000000;
}
.cid-tWYB2Y5g3J .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWYB2Y5g3J .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWYB2Y5g3J .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWYB2Y5g3J .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWYB2Y5g3J .content-head {
  max-width: 800px;
}
.cid-tWYB2Y5g3J .item-title,
.cid-tWYB2Y5g3J .mbr-section-btn {
  text-align: center;
}
.cid-tWYB2Y5g3J .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWYEkscb5z {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWYEkscb5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYEkscb5z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYEkscb5z .mbr-section-title {
  text-align: center;
}
.cid-tX9zQmHOdZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9zQmHOdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9zQmHOdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9zQmHOdZ .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9zQmHOdZ .container {
    max-width: 1400px;
  }
}
.cid-tX9zQmHOdZ .card {
  margin: auto;
}
.cid-tX9zQmHOdZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9zQmHOdZ .item {
  padding: 5px !important;
}
.cid-tX9zQmHOdZ .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9zQmHOdZ .row {
  justify-content: left;
}
.cid-tX9zQmHOdZ .card-title,
.cid-tX9zQmHOdZ .card-box {
  text-align: center;
}
.cid-tX9zQmHOdZ .row .item {
  margin: 10px 0px !important;
}
.cid-tX9zQmHOdZ .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9zQmHOdZ .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9zQmHOdZ .row a:link {
  color: black !important;
}
.cid-tX9zQmHOdZ .row a:visited {
  color: black !important;
}
.cid-tX9zQmHOdZ .active h4 {
  background-color: #444444;
}
.cid-tX9zQmHOdZ .active h4:hover {
  background-color: gray;
}
.cid-tX9zQmHOdZ .active a:link {
  color: white !important;
}
.cid-tX9zQmHOdZ .active a:visited {
  color: white !important;
}
.cid-tWYEksWsSD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWYEksWsSD h6 {
  line-height: 1.2;
}
.cid-tWYEksWsSD img,
.cid-tWYEksWsSD .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWYEksWsSD .item:focus,
.cid-tWYEksWsSD span:focus {
  outline: none;
}
.cid-tWYEksWsSD .item {
  cursor: pointer;
}
.cid-tWYEksWsSD .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWYEksWsSD .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWYEksWsSD .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWYEksWsSD .mbr-section-title {
  color: #000000;
}
.cid-tWYEksWsSD .mbr-text,
.cid-tWYEksWsSD .mbr-section-btn {
  color: #000000;
}
.cid-tWYEksWsSD .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWYEksWsSD .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWYEksWsSD .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWYEksWsSD .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWYEksWsSD .content-head {
  max-width: 800px;
}
.cid-tWYEksWsSD .item-title,
.cid-tWYEksWsSD .mbr-section-btn {
  text-align: center;
}
.cid-tWYEksWsSD .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWYJLUpYrE {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWYJLUpYrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYJLUpYrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYJLUpYrE .mbr-section-title {
  text-align: center;
}
.cid-tX9A0sQ4DS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9A0sQ4DS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9A0sQ4DS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9A0sQ4DS .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9A0sQ4DS .container {
    max-width: 1400px;
  }
}
.cid-tX9A0sQ4DS .card {
  margin: auto;
}
.cid-tX9A0sQ4DS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9A0sQ4DS .item {
  padding: 5px !important;
}
.cid-tX9A0sQ4DS .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9A0sQ4DS .row {
  justify-content: left;
}
.cid-tX9A0sQ4DS .card-title,
.cid-tX9A0sQ4DS .card-box {
  text-align: center;
}
.cid-tX9A0sQ4DS .row .item {
  margin: 10px 0px !important;
}
.cid-tX9A0sQ4DS .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9A0sQ4DS .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9A0sQ4DS .row a:link {
  color: black !important;
}
.cid-tX9A0sQ4DS .row a:visited {
  color: black !important;
}
.cid-tX9A0sQ4DS .active h4 {
  background-color: #444444;
}
.cid-tX9A0sQ4DS .active h4:hover {
  background-color: gray;
}
.cid-tX9A0sQ4DS .active a:link {
  color: white !important;
}
.cid-tX9A0sQ4DS .active a:visited {
  color: white !important;
}
.cid-tWYJLV4ZLv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWYJLV4ZLv h6 {
  line-height: 1.2;
}
.cid-tWYJLV4ZLv img,
.cid-tWYJLV4ZLv .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWYJLV4ZLv .item:focus,
.cid-tWYJLV4ZLv span:focus {
  outline: none;
}
.cid-tWYJLV4ZLv .item {
  cursor: pointer;
}
.cid-tWYJLV4ZLv .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWYJLV4ZLv .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWYJLV4ZLv .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWYJLV4ZLv .mbr-section-title {
  color: #000000;
}
.cid-tWYJLV4ZLv .mbr-text,
.cid-tWYJLV4ZLv .mbr-section-btn {
  color: #000000;
}
.cid-tWYJLV4ZLv .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWYJLV4ZLv .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWYJLV4ZLv .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWYJLV4ZLv .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWYJLV4ZLv .content-head {
  max-width: 800px;
}
.cid-tWYJLV4ZLv .item-title,
.cid-tWYJLV4ZLv .mbr-section-btn {
  text-align: center;
}
.cid-tWYJLV4ZLv .item-content h5 {
  margin: 5px !important;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWYP7cIpbC {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWYP7cIpbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWYP7cIpbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWYP7cIpbC .mbr-section-title {
  text-align: center;
}
.cid-tX9Aehllv0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9Aehllv0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9Aehllv0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9Aehllv0 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9Aehllv0 .container {
    max-width: 1400px;
  }
}
.cid-tX9Aehllv0 .card {
  margin: auto;
}
.cid-tX9Aehllv0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9Aehllv0 .item {
  padding: 5px !important;
}
.cid-tX9Aehllv0 .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9Aehllv0 .row {
  justify-content: left;
}
.cid-tX9Aehllv0 .card-title,
.cid-tX9Aehllv0 .card-box {
  text-align: center;
}
.cid-tX9Aehllv0 .row .item {
  margin: 10px 0px !important;
}
.cid-tX9Aehllv0 .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9Aehllv0 .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9Aehllv0 .row a:link {
  color: black !important;
}
.cid-tX9Aehllv0 .row a:visited {
  color: black !important;
}
.cid-tX9Aehllv0 .active h4 {
  background-color: #444444;
}
.cid-tX9Aehllv0 .active h4:hover {
  background-color: gray;
}
.cid-tX9Aehllv0 .active a:link {
  color: white !important;
}
.cid-tX9Aehllv0 .active a:visited {
  color: white !important;
}
.cid-tWYP7d6CUt {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWYP7d6CUt h6 {
  line-height: 1.2;
}
.cid-tWYP7d6CUt img,
.cid-tWYP7d6CUt .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWYP7d6CUt .item:focus,
.cid-tWYP7d6CUt span:focus {
  outline: none;
}
.cid-tWYP7d6CUt .item {
  cursor: pointer;
}
.cid-tWYP7d6CUt .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWYP7d6CUt .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWYP7d6CUt .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWYP7d6CUt .mbr-section-title {
  color: #000000;
}
.cid-tWYP7d6CUt .mbr-text,
.cid-tWYP7d6CUt .mbr-section-btn {
  color: #000000;
}
.cid-tWYP7d6CUt .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWYP7d6CUt .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWYP7d6CUt .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWYP7d6CUt .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWYP7d6CUt .content-head {
  max-width: 800px;
}
.cid-tWYP7d6CUt .item-title,
.cid-tWYP7d6CUt .mbr-section-btn {
  text-align: center;
}
.cid-tWYP7d6CUt .item-content h5 {
  margin: 5px !important;
}
.cid-tWYP7d6CUt .item-subtitle,
.cid-tWYP7d6CUt .mbr-section-btn {
  text-align: center;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-tWZfvU6kFR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/dji-0374xxs-2000x1053.jpg");
}
.cid-tWZfvU6kFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWZfvU6kFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWZfvU6kFR .mbr-section-title {
  text-align: center;
}
.cid-tX9KhGOWnL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tX9KhGOWnL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9KhGOWnL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9KhGOWnL .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tX9KhGOWnL .container {
    max-width: 1400px;
  }
}
.cid-tX9KhGOWnL .card {
  margin: auto;
}
.cid-tX9KhGOWnL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 1rem;
}
.cid-tX9KhGOWnL .item {
  padding: 5px !important;
}
.cid-tX9KhGOWnL .item-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-tX9KhGOWnL .row {
  justify-content: left;
}
.cid-tX9KhGOWnL .card-title,
.cid-tX9KhGOWnL .card-box {
  text-align: center;
}
.cid-tX9KhGOWnL .row .item {
  margin: 10px 0px !important;
}
.cid-tX9KhGOWnL .row h4 {
  width: 90%;
  color: black;
  border: 2px solid black;
  margin: 5px 0px;
  padding: 5px 0px;
  font-size: 1.3rem;
}
.cid-tX9KhGOWnL .row h4:hover {
  color: black;
  background-color: lightgray;
}
.cid-tX9KhGOWnL .row a:link {
  color: black !important;
}
.cid-tX9KhGOWnL .row a:visited {
  color: black !important;
}
.cid-tX9KhGOWnL .active h4 {
  background-color: #444444;
}
.cid-tX9KhGOWnL .active h4:hover {
  background-color: gray;
}
.cid-tX9KhGOWnL .active a:link {
  color: white !important;
}
.cid-tX9KhGOWnL .active a:visited {
  color: white !important;
}
.cid-tWZfvUsl8z {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tWZfvUsl8z h6 {
  line-height: 1.2;
}
.cid-tWZfvUsl8z img,
.cid-tWZfvUsl8z .item-img {
  margin: 0px !important;
  width: 100%;
}
.cid-tWZfvUsl8z .item:focus,
.cid-tWZfvUsl8z span:focus {
  outline: none;
}
.cid-tWZfvUsl8z .item {
  cursor: pointer;
}
.cid-tWZfvUsl8z .item-wrapper {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  background: white;
  border: 2px solid transparent;
}
.cid-tWZfvUsl8z .item-wrapper:hover {
  transform: scale3d(1.01, 1.01, 1);
  border-color: dimgray;
}
.cid-tWZfvUsl8z .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-tWZfvUsl8z .mbr-section-title {
  color: #000000;
}
.cid-tWZfvUsl8z .mbr-text,
.cid-tWZfvUsl8z .mbr-section-btn {
  color: #000000;
}
.cid-tWZfvUsl8z .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5rem 0.5rem;
  background: white;
}
.cid-tWZfvUsl8z .item-title {
  color: #000000;
  text-align: center;
}
.cid-tWZfvUsl8z .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tWZfvUsl8z .item-text {
  color: #000000;
  text-align: center;
}
.cid-tWZfvUsl8z .content-head {
  max-width: 800px;
}
.cid-tWZfvUsl8z .item-title,
.cid-tWZfvUsl8z .mbr-section-btn {
  text-align: center;
}
.cid-tWZfvUsl8z .item-content h5 {
  margin: 5px !important;
}
.cid-tWZfvUsl8z .item-subtitle,
.cid-tWZfvUsl8z .mbr-section-btn {
  text-align: center;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-tXCaOzIry6 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tXCaOzIry6 nav.navbar {
  position: fixed;
}
.cid-tXCaOzIry6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tXCaOzIry6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXCaOzIry6 .dropdown-item:hover,
.cid-tXCaOzIry6 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tXCaOzIry6 .dropdown-item:hover span {
  color: white;
}
.cid-tXCaOzIry6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXCaOzIry6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXCaOzIry6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXCaOzIry6 .nav-link {
  position: relative;
}
.cid-tXCaOzIry6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .container {
    flex-wrap: nowrap;
  }
}
.cid-tXCaOzIry6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown-menu,
.cid-tXCaOzIry6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tXCaOzIry6 .nav-item:focus,
.cid-tXCaOzIry6 .nav-link:focus {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXCaOzIry6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXCaOzIry6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXCaOzIry6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXCaOzIry6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tXCaOzIry6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXCaOzIry6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tXCaOzIry6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar.collapsed {
  justify-content: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXCaOzIry6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXCaOzIry6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tXCaOzIry6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXCaOzIry6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXCaOzIry6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXCaOzIry6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXCaOzIry6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tXCaOzIry6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-tXCaOzIry6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXCaOzIry6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXCaOzIry6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXCaOzIry6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tXCaOzIry6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tXCaOzIry6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXCaOzIry6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXCaOzIry6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXCaOzIry6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXCaOzIry6 .dropdown-item.active,
.cid-tXCaOzIry6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXCaOzIry6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXCaOzIry6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXCaOzIry6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXCaOzIry6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXCaOzIry6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXCaOzIry6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXCaOzIry6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXCaOzIry6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXCaOzIry6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXCaOzIry6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXCaOzIry6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXCaOzIry6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXCaOzIry6 .navbar {
    height: 70px;
  }
  .cid-tXCaOzIry6 .navbar.opened {
    height: auto;
  }
  .cid-tXCaOzIry6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-tXCaOzIry6 .container {
    max-width: 1430px;
  }
}
.cid-uyHwQ5iCIu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dji-0374xxs-1-2000x1053.jpg");
}
.cid-uyHwQ5iCIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyHwQ5iCIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyHwQ5iCIu .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uyHwQ5iCIu .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyHwQ5iCIu .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyHwQ5iCIu .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyHwQ5iCIu .container {
    padding: 0 16px;
  }
}
.cid-uyHwQ5iCIu .row {
  justify-content: center;
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uyHwQ5iCIu .row {
    height: 350px;
  }
}
.cid-tXy1Wfij2z {
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-tXy1Wfij2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXy1Wfij2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXy1Wfij2z .container {
    padding: 0 20px;
  }
  .cid-tXy1Wfij2z .container .row {
    padding: 0;
  }
}
.cid-tXy1Wfij2z .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tXy1Wfij2z .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tXy1Wfij2z .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tXy1Wfij2z .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tXy1Wfij2z .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-tXy1Wfij2z .video-block .video-wrapper .app-video-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tXy1Wfij2z .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tXy1Wfij2z .video-block .video-wrapper .app-video-wrapper:before {
  color: #ffffff;
  text-shadow: none;
}
.cid-tXy1Wfij2z .mbr-section-title {
  color: #222222;
}
.cid-tXy1Wfij2z .mbr-text {
  color: #222222;
}
.cid-v9yAVJY7tq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v9yAVJY7tq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9yAVJY7tq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9yAVJY7tq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v9yAVJY7tq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v9yAVJY7tq .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-v9yAVJY7tq .panel-body,
.cid-v9yAVJY7tq .card-header {
  padding: 1rem 0;
}
.cid-v9yAVJY7tq .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-v9yAVJY7tq .panel-text {
  text-align: left;
}
.cid-uCErFapB1E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uCErFapB1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCErFapB1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCErFapB1E .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uCErFapB1E .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCErFapB1E .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uCErFapB1E .panel-body,
.cid-uCErFapB1E .card-header {
  padding: 1rem 0;
}
.cid-uCErFapB1E .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-uCErFapB1E .panel-text {
  text-align: left;
}
.cid-uC6tiM62J9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uC6tiM62J9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6tiM62J9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6tiM62J9 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uC6tiM62J9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uC6tiM62J9 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uC6tiM62J9 .panel-body,
.cid-uC6tiM62J9 .card-header {
  padding: 1rem 0;
}
.cid-uC6tiM62J9 .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-uC6tiM62J9 .panel-text {
  text-align: left;
}
.cid-uBItLd0Awo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBItLd0Awo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBItLd0Awo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBItLd0Awo .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uBItLd0Awo .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBItLd0Awo .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uBItLd0Awo .panel-body,
.cid-uBItLd0Awo .card-header {
  padding: 1rem 0;
}
.cid-uBItLd0Awo .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-uBItLd0Awo .panel-text {
  text-align: left;
}
.cid-uTPSNQdJAd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTPSNQdJAd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTPSNQdJAd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTPSNQdJAd .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uTPSNQdJAd .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uTPSNQdJAd .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uTPSNQdJAd .panel-body,
.cid-uTPSNQdJAd .card-header {
  padding: 1rem 0;
}
.cid-uTPSNQdJAd .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-uTPSNQdJAd .panel-text {
  text-align: left;
}
.cid-uBIqwFWDKE {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.cid-uBIqwFWDKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBIqwFWDKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBIqwFWDKE .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uBIqwFWDKE .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBIqwFWDKE .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uBIqwFWDKE .panel-body,
.cid-uBIqwFWDKE .card-header {
  padding: 1rem 0;
}
.cid-uBIqwFWDKE .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-uBIqwFWDKE .panel-text {
  text-align: left;
}
.cid-uqzLBSB4Yt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzLBSB4Yt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzLBSB4Yt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .container {
    padding: 0 22px;
  }
}
.cid-uqzLBSB4Yt .row {
  justify-content: space-between;
}
.cid-uqzLBSB4Yt .content-wrapper {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-uqzLBSB4Yt .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uqzLBSB4Yt .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-uqzLBSB4Yt .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-uqzLBSB4Yt .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper {
    display: block;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uqzLBSB4Yt .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-uqzLBSB4Yt .mbr-section-title {
  color: #ff5753;
}
.cid-uqzLBSB4Yt .mbr-text {
  color: #353535;
}
.cid-uqzLBSB4Yt .list {
  color: #635d60;
}
.cid-uqzLBSB4Yt .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-uqzLBSB4Yt .mbr-copy,
.cid-uqzLBSB4Yt .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uqzLBSB4Yt .mbr-section-title,
.cid-uqzLBSB4Yt .mbr-section-btn {
  color: #303acf;
}
.cid-uqzLBSB4Yt .list,
.cid-uqzLBSB4Yt .item-wrap {
  color: #1c1fa7;
}
.cid-uqzLBSB4Yt .logo-text {
  display: flex;
  justify-content: start;
}
.cid-urwSTAczfn {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-urwSTAczfn nav.navbar {
  position: fixed;
}
.cid-urwSTAczfn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urwSTAczfn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urwSTAczfn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urwSTAczfn .dropdown-item:hover,
.cid-urwSTAczfn .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urwSTAczfn .dropdown-item:hover span {
  color: white;
}
.cid-urwSTAczfn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urwSTAczfn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urwSTAczfn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.2em !important;
}
.cid-urwSTAczfn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urwSTAczfn .nav-link {
  position: relative;
}
.cid-urwSTAczfn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-urwSTAczfn .container {
    flex-wrap: nowrap;
  }
}
.cid-urwSTAczfn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urwSTAczfn .dropdown-menu,
.cid-urwSTAczfn .navbar.opened {
  background: #ffffff !important;
}
.cid-urwSTAczfn .nav-item:focus,
.cid-urwSTAczfn .nav-link:focus {
  outline: none;
}
.cid-urwSTAczfn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urwSTAczfn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urwSTAczfn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urwSTAczfn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urwSTAczfn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urwSTAczfn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urwSTAczfn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-urwSTAczfn .navbar.opened {
  transition: all 0.3s;
}
.cid-urwSTAczfn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urwSTAczfn .navbar .navbar-logo img {
  width: auto;
}
.cid-urwSTAczfn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urwSTAczfn .navbar.collapsed {
  justify-content: center;
}
.cid-urwSTAczfn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urwSTAczfn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urwSTAczfn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-urwSTAczfn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urwSTAczfn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urwSTAczfn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-urwSTAczfn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urwSTAczfn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urwSTAczfn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urwSTAczfn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urwSTAczfn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urwSTAczfn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urwSTAczfn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urwSTAczfn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-urwSTAczfn .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-urwSTAczfn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urwSTAczfn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urwSTAczfn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urwSTAczfn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urwSTAczfn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urwSTAczfn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urwSTAczfn .navbar.navbar-short {
  min-height: 60px;
}
.cid-urwSTAczfn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urwSTAczfn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urwSTAczfn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urwSTAczfn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urwSTAczfn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urwSTAczfn .dropdown-item.active,
.cid-urwSTAczfn .dropdown-item:active {
  background-color: transparent;
}
.cid-urwSTAczfn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urwSTAczfn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urwSTAczfn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urwSTAczfn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urwSTAczfn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urwSTAczfn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urwSTAczfn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urwSTAczfn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urwSTAczfn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urwSTAczfn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urwSTAczfn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urwSTAczfn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urwSTAczfn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urwSTAczfn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urwSTAczfn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urwSTAczfn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urwSTAczfn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urwSTAczfn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urwSTAczfn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urwSTAczfn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urwSTAczfn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urwSTAczfn .navbar {
    height: 70px;
  }
  .cid-urwSTAczfn .navbar.opened {
    height: auto;
  }
  .cid-urwSTAczfn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 1536px) {
  .cid-urwSTAczfn .container {
    max-width: 1526px;
  }
}
@media (min-width: 1800px) {
  .cid-urwSTAczfn .container {
    max-width: 1430px;
  }
}
.cid-urwSTADtNq {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-urwSTADtNq .video-block {
  margin: auto;
}
@media (max-width: 850px) {
  .cid-urwSTADtNq .video-block {
    width: 100% !important;
  }
  .cid-urwSTADtNq iframe {
    height: 300px !important;
  }
}
@media (min-width: 1536px) {
  .cid-urwSTADtNq .container {
    max-width: 1520px;
  }
}
.cid-urwSTASUf3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urwSTASUf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urwSTASUf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urwSTASUf3 .container {
    padding: 0 22px;
  }
}
.cid-urwSTASUf3 .row {
  justify-content: space-between;
}
.cid-urwSTASUf3 .content-wrapper {
  margin-bottom: 0px;
}
.cid-urwSTASUf3 .content-wrapper .mbr-section-title {
  margin-bottom: 0px;
}
.cid-urwSTASUf3 .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-urwSTASUf3 .lists-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-urwSTASUf3 .lists-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-urwSTASUf3 .lists-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-urwSTASUf3 .lists-wrapper .list-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-urwSTASUf3 .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-urwSTASUf3 .lists-wrapper .list-wrap .list .item-wrap:first-child {
  color: #1c1fa7;
}
.cid-urwSTASUf3 .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-urwSTASUf3 .lists-wrapper .list-wrap .list .item-wrap:hover,
.cid-urwSTASUf3 .lists-wrapper .list-wrap .list .item-wrap:focus {
  color: #1c1fa7;
}
.cid-urwSTASUf3 .copy-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #b6b5b5;
  padding-top: 16px;
  padding-bottom: 30px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-urwSTASUf3 .copy-wrapper {
    display: block;
  }
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-urwSTASUf3 .copy-wrapper .social-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ff5753;
}
.cid-urwSTASUf3 .copy-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-urwSTASUf3 .copy-wrapper .mbr-copy {
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-urwSTASUf3 .copy-wrapper .mbr-copy {
    width: 100%;
  }
}
.cid-urwSTASUf3 .mbr-section-title {
  color: #ff5753;
}
.cid-urwSTASUf3 .mbr-text {
  color: #353535;
}
.cid-urwSTASUf3 .list {
  color: #635d60;
}
.cid-urwSTASUf3 .mbr-copy {
  color: #ffffff;
  text-align: right;
}
.cid-urwSTASUf3 .mbr-copy,
.cid-urwSTASUf3 .social-wrapper {
  text-align: center;
  color: #353535;
}
.cid-urwSTASUf3 .mbr-section-title,
.cid-urwSTASUf3 .mbr-section-btn {
  color: #303acf;
}
.cid-urwSTASUf3 .list,
.cid-urwSTASUf3 .item-wrap {
  color: #1c1fa7;
}
.cid-urwSTASUf3 .logo-text {
  display: flex;
  justify-content: start;
}
