body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Fredoka One', display;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #e43f3f !important;
}
.bg-success {
  background-color: #0d00ff !important;
}
.bg-info {
  background-color: #00ffd9 !important;
}
.bg-warning {
  background-color: #ff00ef !important;
}
.bg-danger {
  background-color: #49ff00 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #00ffd9 !important;
  border-color: #00ffd9 !important;
  color: #000000 !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: #00a88f !important;
  border-color: #00a88f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #00a88f !important;
  border-color: #00a88f !important;
}
.btn-success,
.btn-success:active {
  background-color: #0d00ff !important;
  border-color: #0d00ff !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: #0900a8 !important;
  border-color: #0900a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0900a8 !important;
  border-color: #0900a8 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff00ef !important;
  border-color: #ff00ef !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a8009e !important;
  border-color: #a8009e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a8009e !important;
  border-color: #a8009e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #49ff00 !important;
  border-color: #49ff00 !important;
  color: #000000 !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: #30a800 !important;
  border-color: #30a800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #30a800 !important;
  border-color: #30a800 !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: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00ffd9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00a88f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #00ffd9 !important;
  border-color: #00ffd9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0d00ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0900a8 !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: #0d00ff !important;
  border-color: #0d00ff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff00ef;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a8009e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff00ef !important;
  border-color: #ff00ef !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #49ff00;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #30a800 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #49ff00 !important;
  border-color: #49ff00 !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: #e43f3f !important;
}
.text-secondary {
  color: #ff9966 !important;
}
.text-success {
  color: #0d00ff !important;
}
.text-info {
  color: #00ffd9 !important;
}
.text-warning {
  color: #ff00ef !important;
}
.text-danger {
  color: #49ff00 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff5500 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080099 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #009982 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #99008f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2c9900 !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: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #00ffd9;
}
.alert-warning {
  background-color: #ff00ef;
}
.alert-danger {
  background-color: #49ff00;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cfccff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ccfff7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffccfc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dbffcc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !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: #ff9966 !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='%23e43f3f' %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-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxdE1oLcVL {
  display: flex;
  background-image: url("../../../assets/images/m2wnzque-1920x1080.png");
}
.cid-uxdE1oLcVL .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-uxdE1oLcVL .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uxdE1oLcVL {
    align-items: center;
  }
  .cid-uxdE1oLcVL .row {
    justify-content: flex-start;
  }
  .cid-uxdE1oLcVL .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uxdE1oLcVL .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uxdE1oLcVL {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uxdE1oLcVL .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uxdE1oLcVL .content-wrap {
    width: 100%;
  }
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWOqn84Wuk {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-sWOqn84Wuk .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sWOqn84Wuk [class^="socicon-"]:before,
.cid-sWOqn84Wuk [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sWOqn84Wuk .mbr-section-title,
.cid-sWOqn84Wuk .social-list {
  color: #ffffff;
  text-align: center;
}
.cid-sWObtMFxkw {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/m2wnzque-1920x1080.png");
}
.cid-sWObtMFxkw .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sWObtMFxkw .card-wrapper {
  background-color: #bbbbbb;
  border-radius: 4px;
}
.cid-sWObtMFxkw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWObtMFxkw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sWObtMFxkw .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sWObtMFxkw .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sWObtMFxkw .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sWObtMFxkw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sWObtMFxkw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWObtMFxkw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sWObvfBCsE {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/m2wnzque-1920x1080.png");
}
.cid-sWObvfBCsE .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sWObvfBCsE .card-wrapper {
  background-color: #bbbbbb;
  border-radius: 4px;
}
.cid-sWObvfBCsE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWObvfBCsE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sWObvfBCsE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sWObvfBCsE .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sWObvfBCsE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sWObvfBCsE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sWObvfBCsE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWObvfBCsE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWTk16eozm {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/8026c561c1312a7ab09ac196ec56df80c8ea45ed-1920x1200.jpeg");
}
.cid-sWTk16eozm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sWTk16eozm .card-wrapper {
  background-color: #bbbbbb;
  border-radius: 4px;
}
.cid-sWTk16eozm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWTk16eozm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sWTk16eozm .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sWTk16eozm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sWTk16eozm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sWTk16eozm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sWTk16eozm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWTk16eozm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sWTk1hwIIb {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/626567-1920x1202.jpeg");
}
.cid-sWTk1hwIIb .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sWTk1hwIIb .card-wrapper {
  background-color: #bbbbbb;
  border-radius: 4px;
}
.cid-sWTk1hwIIb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWTk1hwIIb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sWTk1hwIIb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sWTk1hwIIb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sWTk1hwIIb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sWTk1hwIIb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sWTk1hwIIb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWTk1hwIIb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3m0iWufzP {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3m0iWufzP .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3m0iWufzP .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3m0iWufzP .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3m0iWufzP .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3m0iWufzP .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3m0iWufzP .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3m0iWufzP .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3m0iWufzP .social-row {
  text-align: center;
}
.cid-t3m0iWufzP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3m0iWufzP .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3m0iWufzP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3m0iWufzP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3m0iWufzP .mbr-section-title {
  color: #bbbbbb;
}
.cid-t3m0iWufzP .mbr-role,
.cid-t3m0iWufzP .social-row {
  color: #ffffff;
}
.cid-t3m0iWufzP .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-t3lZfSStS3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lZfSStS3 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lZfSStS3 .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lZfSStS3 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lZfSStS3 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lZfSStS3 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lZfSStS3 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lZfSStS3 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lZfSStS3 .social-row {
  text-align: center;
}
.cid-t3lZfSStS3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lZfSStS3 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lZfSStS3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lZfSStS3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lZfSStS3 .mbr-role,
.cid-t3lZfSStS3 .social-row {
  color: #ffffff;
}
.cid-t3lZfJd92V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lZfJd92V .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lZfJd92V .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lZfJd92V .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lZfJd92V .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lZfJd92V .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lZfJd92V .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lZfJd92V .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lZfJd92V .social-row {
  text-align: center;
}
.cid-t3lZfJd92V .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lZfJd92V .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lZfJd92V .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lZfJd92V .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lZfJd92V .mbr-role,
.cid-t3lZfJd92V .social-row {
  color: #ffffff;
}
.cid-t3lZfOg5fh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lZfOg5fh .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lZfOg5fh .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lZfOg5fh .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lZfOg5fh .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lZfOg5fh .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lZfOg5fh .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lZfOg5fh .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lZfOg5fh .social-row {
  text-align: center;
}
.cid-t3lZfOg5fh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lZfOg5fh .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lZfOg5fh .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lZfOg5fh .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lZfOg5fh .mbr-role,
.cid-t3lZfOg5fh .social-row {
  color: #ffffff;
}
.cid-t3lY71hx9r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lY71hx9r .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lY71hx9r .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lY71hx9r .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lY71hx9r .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lY71hx9r .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lY71hx9r .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lY71hx9r .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lY71hx9r .social-row {
  text-align: center;
}
.cid-t3lY71hx9r .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lY71hx9r .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lY71hx9r .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lY71hx9r .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lY71hx9r .mbr-role,
.cid-t3lY71hx9r .social-row {
  color: #ffffff;
}
.cid-t3lY6Pxfb2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lY6Pxfb2 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lY6Pxfb2 .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lY6Pxfb2 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lY6Pxfb2 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lY6Pxfb2 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lY6Pxfb2 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lY6Pxfb2 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lY6Pxfb2 .social-row {
  text-align: center;
}
.cid-t3lY6Pxfb2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lY6Pxfb2 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lY6Pxfb2 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lY6Pxfb2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lY6Pxfb2 .mbr-role,
.cid-t3lY6Pxfb2 .social-row {
  color: #ffffff;
}
.cid-t3lY6A6S93 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lY6A6S93 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lY6A6S93 .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lY6A6S93 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lY6A6S93 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lY6A6S93 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lY6A6S93 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lY6A6S93 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lY6A6S93 .social-row {
  text-align: center;
}
.cid-t3lY6A6S93 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lY6A6S93 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lY6A6S93 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lY6A6S93 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lY6A6S93 .mbr-role,
.cid-t3lY6A6S93 .social-row {
  color: #ffffff;
}
.cid-t3lXKTHneK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3lXKTHneK .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lXKTHneK .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lXKTHneK .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lXKTHneK .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lXKTHneK .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lXKTHneK .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lXKTHneK .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lXKTHneK .social-row {
  text-align: center;
}
.cid-t3lXKTHneK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lXKTHneK .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lXKTHneK .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lXKTHneK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lXKTHneK .mbr-role,
.cid-t3lXKTHneK .social-row {
  color: #ffffff;
}
.cid-t3lX746B3K {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-t3lX746B3K .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3lX746B3K .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3lX746B3K .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3lX746B3K .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3lX746B3K .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3lX746B3K .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3lX746B3K .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3lX746B3K .social-row {
  text-align: center;
}
.cid-t3lX746B3K .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3lX746B3K .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3lX746B3K .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3lX746B3K .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3lX746B3K .mbr-role,
.cid-t3lX746B3K .social-row {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sifRTxQsl8 {
  background-image: url("../../../assets/images/keiatme9-1-1920x1080.png");
}
.cid-sifRTxQsl8 .mbr-section-title {
  color: #ffffff;
}
.cid-sifRTxQsl8 .mbr-text,
.cid-sifRTxQsl8 .mbr-section-btn {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sifTa5ktq6 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sifTa5ktq6 img,
.cid-sifTa5ktq6 .item-img {
  width: 100%;
}
.cid-sifTa5ktq6 .item:focus,
.cid-sifTa5ktq6 span:focus {
  outline: none;
}
.cid-sifTa5ktq6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sifTa5ktq6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sifTa5ktq6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sifTa5ktq6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sifTa5ktq6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sifTa5ktq6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sifTa5ktq6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sifTa5ktq6 .mbr-section-title {
  color: #ffffff;
}
.cid-sifTa5ktq6 .mbr-text,
.cid-sifTa5ktq6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sifTa5ktq6 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-sifTa5ktq6 .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sifTa5ktq6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqBne0oYKt {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tqBne0oYKt .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tqBne0oYKt .team-card:hover {
  transform: translateY(-10px);
}
.cid-tqBne0oYKt .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tqBne0oYKt .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tqBne0oYKt .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tqBne0oYKt .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tqBne0oYKt .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tqBne0oYKt .social-row {
  text-align: center;
}
.cid-tqBne0oYKt .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tqBne0oYKt .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tqBne0oYKt .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tqBne0oYKt .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tqBne0oYKt .mbr-section-title {
  color: #bbbbbb;
}
.cid-tqBne0oYKt .mbr-role,
.cid-tqBne0oYKt .social-row {
  color: #ff00ef;
}
.cid-tqBne0oYKt .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-tqBne0oYKt .card-text,
.cid-tqBne0oYKt .mbr-section-btn,
.cid-tqBne0oYKt .social-row {
  color: #ffffff;
}
.cid-tgVHlovKO9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tgVHlovKO9 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tgVHlovKO9 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tgVHlovKO9 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tgVHlovKO9 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tgVHlovKO9 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tgVHlovKO9 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tgVHlovKO9 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tgVHlovKO9 .social-row {
  text-align: center;
}
.cid-tgVHlovKO9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tgVHlovKO9 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tgVHlovKO9 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tgVHlovKO9 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tgVHlovKO9 .mbr-section-title {
  color: #bbbbbb;
}
.cid-tgVHlovKO9 .mbr-role,
.cid-tgVHlovKO9 .social-row {
  color: #ff00ef;
}
.cid-tgVHlovKO9 .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-tgVHlovKO9 .card-text,
.cid-tgVHlovKO9 .mbr-section-btn,
.cid-tgVHlovKO9 .social-row {
  color: #ffffff;
}
.cid-tgSyrtMJFM {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tgSyrtMJFM .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tgSyrtMJFM .team-card:hover {
  transform: translateY(-10px);
}
.cid-tgSyrtMJFM .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tgSyrtMJFM .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tgSyrtMJFM .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tgSyrtMJFM .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tgSyrtMJFM .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tgSyrtMJFM .social-row {
  text-align: center;
}
.cid-tgSyrtMJFM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tgSyrtMJFM .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tgSyrtMJFM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tgSyrtMJFM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tgSyrtMJFM .mbr-section-title {
  color: #bbbbbb;
}
.cid-tgSyrtMJFM .mbr-role,
.cid-tgSyrtMJFM .social-row {
  color: #ff00ef;
}
.cid-tgSyrtMJFM .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-tgSyrtMJFM .card-text,
.cid-tgSyrtMJFM .mbr-section-btn,
.cid-tgSyrtMJFM .social-row {
  color: #ffffff;
}
.cid-tgSyr0ucx4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tgSyr0ucx4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tgSyr0ucx4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tgSyr0ucx4 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tgSyr0ucx4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tgSyr0ucx4 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tgSyr0ucx4 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tgSyr0ucx4 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tgSyr0ucx4 .social-row {
  text-align: center;
}
.cid-tgSyr0ucx4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tgSyr0ucx4 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tgSyr0ucx4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tgSyr0ucx4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tgSyr0ucx4 .mbr-section-title {
  color: #bbbbbb;
}
.cid-tgSyr0ucx4 .mbr-role,
.cid-tgSyr0ucx4 .social-row {
  color: #ff00ef;
}
.cid-tgSyr0ucx4 .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-tgSyr0ucx4 .card-text,
.cid-tgSyr0ucx4 .mbr-section-btn,
.cid-tgSyr0ucx4 .social-row {
  color: #ffffff;
}
.cid-t3TZSxjHPk {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3TZSxjHPk .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3TZSxjHPk .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3TZSxjHPk .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3TZSxjHPk .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3TZSxjHPk .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3TZSxjHPk .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3TZSxjHPk .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3TZSxjHPk .social-row {
  text-align: center;
}
.cid-t3TZSxjHPk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3TZSxjHPk .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3TZSxjHPk .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3TZSxjHPk .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3TZSxjHPk .mbr-section-title {
  color: #bbbbbb;
}
.cid-t3TZSxjHPk .mbr-role,
.cid-t3TZSxjHPk .social-row {
  color: #ff00ef;
}
.cid-t3TZSxjHPk .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-t3TZSxjHPk .card-text,
.cid-t3TZSxjHPk .mbr-section-btn,
.cid-t3TZSxjHPk .social-row {
  color: #ffffff;
}
.cid-t3TYwKCNOK {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3TYwKCNOK .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3TYwKCNOK .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3TYwKCNOK .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3TYwKCNOK .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3TYwKCNOK .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3TYwKCNOK .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3TYwKCNOK .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3TYwKCNOK .social-row {
  text-align: center;
}
.cid-t3TYwKCNOK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3TYwKCNOK .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3TYwKCNOK .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3TYwKCNOK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3TYwKCNOK .mbr-section-title {
  color: #bbbbbb;
}
.cid-t3TYwKCNOK .mbr-role,
.cid-t3TYwKCNOK .social-row {
  color: #ffffff;
}
.cid-t3TYwKCNOK .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-t3TTVsvbhT {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3TTVsvbhT .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3TTVsvbhT .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3TTVsvbhT .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3TTVsvbhT .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3TTVsvbhT .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3TTVsvbhT .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3TTVsvbhT .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3TTVsvbhT .social-row {
  text-align: center;
}
.cid-t3TTVsvbhT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3TTVsvbhT .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3TTVsvbhT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3TTVsvbhT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3TTVsvbhT .mbr-section-title {
  color: #bbbbbb;
}
.cid-t3TTVsvbhT .mbr-role,
.cid-t3TTVsvbhT .social-row {
  color: #ffffff;
  text-align: center;
}
.cid-t3TTVsvbhT .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-t3TSRqOFOH {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-t3TSRqOFOH .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3TSRqOFOH .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3TSRqOFOH .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3TSRqOFOH .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3TSRqOFOH .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3TSRqOFOH .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3TSRqOFOH .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3TSRqOFOH .social-row {
  text-align: center;
}
.cid-t3TSRqOFOH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3TSRqOFOH .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3TSRqOFOH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3TSRqOFOH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3TSRqOFOH .mbr-section-title {
  color: #bbbbbb;
}
.cid-t3TSRqOFOH .mbr-role,
.cid-t3TSRqOFOH .social-row {
  color: #ffffff;
}
.cid-t3TSRqOFOH .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-t3TSRqOFOH .card-text,
.cid-t3TSRqOFOH .mbr-section-btn,
.cid-t3TSRqOFOH .social-row {
  color: #ffffff;
}
.cid-t00SzHOEE4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t00SzHOEE4 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-t00SzHOEE4 .container {
    max-width: 1400px;
  }
}
.cid-t00SzHOEE4 .card {
  margin: auto;
}
.cid-t00SzHOEE4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-t00SzHOEE4 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t00SzHOEE4 .row {
  justify-content: center;
}
.cid-t00SzHOEE4 .card-title,
.cid-t00SzHOEE4 .card-box {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t332Gn21JJ {
  background-image: url("../../../assets/images/1379176596-preview-9a81dlwlwj2uugcvs-nsvtzdoedtwwkgzzlqhtxh5rd9edajcfyv45sryafmickl-pargvsl403ulruwendvkv7hpifbq07jl1rsonykfrh0klodgxavy-lw4bzxq-gyr6fzjmhuzam3lcxotwtixq-uxrotdyjvq-1920x1200.jpg");
}
.cid-t332Gn21JJ .mbr-text,
.cid-t332Gn21JJ .mbr-section-btn {
  color: #232323;
}
.cid-t332Gn21JJ .btn {
  width: 100%;
}
.cid-t332Gn21JJ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-t332Gn21JJ P {
  color: #ffffff;
  text-align: center;
}
.cid-t332Gn21JJ H1 {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uATjeZBpzq {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uATjeZBpzq .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uATjeZBpzq .team-card:hover {
  transform: translateY(-10px);
}
.cid-uATjeZBpzq .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uATjeZBpzq .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uATjeZBpzq .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uATjeZBpzq .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uATjeZBpzq .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uATjeZBpzq .social-row {
  text-align: center;
}
.cid-uATjeZBpzq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uATjeZBpzq .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uATjeZBpzq .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uATjeZBpzq .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uATjeZBpzq .mbr-section-title {
  color: #bbbbbb;
}
.cid-uATjeZBpzq .mbr-role,
.cid-uATjeZBpzq .social-row {
  color: #ff00ef;
}
.cid-uATjeZBpzq .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-uATjeZBpzq .card-text,
.cid-uATjeZBpzq .mbr-section-btn,
.cid-uATjeZBpzq .social-row {
  color: #ffffff;
}
.cid-tcGvBC3Bpd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-tcGvBC3Bpd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tcGvBC3Bpd .team-card:hover {
  transform: translateY(-10px);
}
.cid-tcGvBC3Bpd .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tcGvBC3Bpd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tcGvBC3Bpd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tcGvBC3Bpd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcGvBC3Bpd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tcGvBC3Bpd .social-row {
  text-align: center;
}
.cid-tcGvBC3Bpd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tcGvBC3Bpd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tcGvBC3Bpd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tcGvBC3Bpd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tcGvBC3Bpd .mbr-section-title {
  color: #bbbbbb;
}
.cid-tcGvBC3Bpd .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-t3ml89yNpd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-t3ml89yNpd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3ml89yNpd .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3ml89yNpd .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3ml89yNpd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3ml89yNpd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3ml89yNpd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3ml89yNpd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3ml89yNpd .social-row {
  text-align: center;
}
.cid-t3ml89yNpd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t3ml89yNpd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-t3ml89yNpd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t3ml89yNpd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-t3ml89yNpd .mbr-section-title {
  color: #bbbbbb;
}
.cid-t3ml89yNpd .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSVpZV0j31 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tSVpZV0j31 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tSVpZV0j31 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tSVpZV0j31 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tSVpZV0j31 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tSVpZV0j31 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tSVpZV0j31 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tSVpZV0j31 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tSVpZV0j31 .social-row {
  text-align: center;
}
.cid-tSVpZV0j31 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tSVpZV0j31 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tSVpZV0j31 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tSVpZV0j31 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tSVpZV0j31 .mbr-section-title {
  color: #bbbbbb;
}
.cid-tSVpZV0j31 .mbr-role,
.cid-tSVpZV0j31 .social-row {
  color: #ff00ef;
}
.cid-tSVpZV0j31 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSVpZV0j31 .card-text,
.cid-tSVpZV0j31 .mbr-section-btn,
.cid-tSVpZV0j31 .social-row {
  color: #ffffff;
}
.cid-tN0ND8VLWI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tN0ND8VLWI .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tN0ND8VLWI .team-card:hover {
  transform: translateY(-10px);
}
.cid-tN0ND8VLWI .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tN0ND8VLWI .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tN0ND8VLWI .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tN0ND8VLWI .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tN0ND8VLWI .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tN0ND8VLWI .social-row {
  text-align: center;
}
.cid-tN0ND8VLWI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tN0ND8VLWI .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tN0ND8VLWI .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tN0ND8VLWI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tN0ND8VLWI .mbr-section-title {
  color: #bbbbbb;
}
.cid-tN0ND8VLWI .mbr-role,
.cid-tN0ND8VLWI .social-row {
  color: #ff00ef;
}
.cid-tN0ND8VLWI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tN0ND8VLWI .card-text,
.cid-tN0ND8VLWI .mbr-section-btn,
.cid-tN0ND8VLWI .social-row {
  color: #ffffff;
}
.cid-tBS9KNi6KM {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tBS9KNi6KM .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tBS9KNi6KM .team-card:hover {
  transform: translateY(-10px);
}
.cid-tBS9KNi6KM .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tBS9KNi6KM .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tBS9KNi6KM .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tBS9KNi6KM .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tBS9KNi6KM .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tBS9KNi6KM .social-row {
  text-align: center;
}
.cid-tBS9KNi6KM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tBS9KNi6KM .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tBS9KNi6KM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tBS9KNi6KM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tBS9KNi6KM .mbr-section-title {
  color: #bbbbbb;
}
.cid-tBS9KNi6KM .mbr-role,
.cid-tBS9KNi6KM .social-row {
  color: #ff00ef;
}
.cid-tBS9KNi6KM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBS9KNi6KM .card-text,
.cid-tBS9KNi6KM .mbr-section-btn,
.cid-tBS9KNi6KM .social-row {
  color: #ffffff;
}
.cid-tBaJ8Eow1a {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tBaJ8Eow1a .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tBaJ8Eow1a .team-card:hover {
  transform: translateY(-10px);
}
.cid-tBaJ8Eow1a .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tBaJ8Eow1a .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tBaJ8Eow1a .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tBaJ8Eow1a .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tBaJ8Eow1a .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tBaJ8Eow1a .social-row {
  text-align: center;
}
.cid-tBaJ8Eow1a .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tBaJ8Eow1a .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tBaJ8Eow1a .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tBaJ8Eow1a .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tBaJ8Eow1a .mbr-section-title {
  color: #bbbbbb;
}
.cid-tBaJ8Eow1a .mbr-role,
.cid-tBaJ8Eow1a .social-row {
  color: #ff00ef;
}
.cid-tBaJ8Eow1a .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBaJ8Eow1a .card-text,
.cid-tBaJ8Eow1a .mbr-section-btn,
.cid-tBaJ8Eow1a .social-row {
  color: #ffffff;
}
.cid-tAAXkaiPXu {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-tAAXkaiPXu .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tAAXkaiPXu .team-card:hover {
  transform: translateY(-10px);
}
.cid-tAAXkaiPXu .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tAAXkaiPXu .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tAAXkaiPXu .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tAAXkaiPXu .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tAAXkaiPXu .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tAAXkaiPXu .social-row {
  text-align: center;
}
.cid-tAAXkaiPXu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tAAXkaiPXu .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tAAXkaiPXu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tAAXkaiPXu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tAAXkaiPXu .mbr-section-title {
  color: #bbbbbb;
}
.cid-tAAXkaiPXu .mbr-role,
.cid-tAAXkaiPXu .social-row {
  color: #ff00ef;
}
.cid-tAAXkaiPXu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tAAXkaiPXu .card-text,
.cid-tAAXkaiPXu .mbr-section-btn,
.cid-tAAXkaiPXu .social-row {
  color: #ffffff;
}
.cid-uKW7GhWKgS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uKW7GhWKgS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uKW7GhWKgS form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uKW7GhWKgS form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uKW7GhWKgS form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uKW7GhWKgS .mbr-section-title {
  color: #ffffff;
}
.cid-uKW7GhWKgS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uATiOaiCsu {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uATiOaiCsu .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uATiOaiCsu .team-card:hover {
  transform: translateY(-10px);
}
.cid-uATiOaiCsu .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uATiOaiCsu .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uATiOaiCsu .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uATiOaiCsu .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uATiOaiCsu .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uATiOaiCsu .social-row {
  text-align: center;
}
.cid-uATiOaiCsu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uATiOaiCsu .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uATiOaiCsu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uATiOaiCsu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uATiOaiCsu .mbr-section-title {
  color: #bbbbbb;
}
.cid-uATiOaiCsu .mbr-role,
.cid-uATiOaiCsu .social-row {
  color: #ff00ef;
}
.cid-uATiOaiCsu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uATiOaiCsu .card-text,
.cid-uATiOaiCsu .mbr-section-btn,
.cid-uATiOaiCsu .social-row {
  color: #ffffff;
}
.cid-uq3If974n4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uq3If974n4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uq3If974n4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uq3If974n4 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uq3If974n4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uq3If974n4 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uq3If974n4 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uq3If974n4 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uq3If974n4 .social-row {
  text-align: center;
}
.cid-uq3If974n4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uq3If974n4 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uq3If974n4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uq3If974n4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uq3If974n4 .mbr-section-title {
  color: #bbbbbb;
}
.cid-uq3If974n4 .mbr-role,
.cid-uq3If974n4 .social-row {
  color: #ff00ef;
}
.cid-uq3If974n4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uq3If974n4 .card-text,
.cid-uq3If974n4 .mbr-section-btn,
.cid-uq3If974n4 .social-row {
  color: #ffffff;
}
.cid-uif80aOiiL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uif80aOiiL .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uif80aOiiL .team-card:hover {
  transform: translateY(-10px);
}
.cid-uif80aOiiL .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uif80aOiiL .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uif80aOiiL .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uif80aOiiL .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uif80aOiiL .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uif80aOiiL .social-row {
  text-align: center;
}
.cid-uif80aOiiL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uif80aOiiL .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uif80aOiiL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uif80aOiiL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uif80aOiiL .mbr-section-title {
  color: #bbbbbb;
}
.cid-uif80aOiiL .mbr-role,
.cid-uif80aOiiL .social-row {
  color: #ff00ef;
}
.cid-uif80aOiiL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uif80aOiiL .card-text,
.cid-uif80aOiiL .mbr-section-btn,
.cid-uif80aOiiL .social-row {
  color: #ffffff;
}
.cid-u2RHkDANdQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-u2RHkDANdQ .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-u2RHkDANdQ .team-card:hover {
  transform: translateY(-10px);
}
.cid-u2RHkDANdQ .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-u2RHkDANdQ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-u2RHkDANdQ .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-u2RHkDANdQ .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u2RHkDANdQ .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-u2RHkDANdQ .social-row {
  text-align: center;
}
.cid-u2RHkDANdQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-u2RHkDANdQ .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-u2RHkDANdQ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-u2RHkDANdQ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-u2RHkDANdQ .mbr-section-title {
  color: #bbbbbb;
}
.cid-u2RHkDANdQ .mbr-role,
.cid-u2RHkDANdQ .social-row {
  color: #ff00ef;
}
.cid-u2RHkDANdQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2RHkDANdQ .card-text,
.cid-u2RHkDANdQ .mbr-section-btn,
.cid-u2RHkDANdQ .social-row {
  color: #ffffff;
}
.cid-umENTbXy4R {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-umENTbXy4R .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-umENTbXy4R form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-umENTbXy4R form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-umENTbXy4R form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-umENTbXy4R .mbr-section-title {
  color: #ffffff;
}
.cid-umENTbXy4R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ut79NNYqJw {
  background-image: url("../../../assets/images/vxadm9yw-1920x1080.png");
}
.cid-ut79NNYqJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut79NNYqJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut79NNYqJw .mbr-section-title {
  color: #ffffff;
}
.cid-ut79NNYqJw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ut79NNYqJw .mbr-text,
.cid-ut79NNYqJw .mbr-section-btn {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujgfciPsj3 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-ujgfciPsj3 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ujgfciPsj3 .team-card:hover {
  transform: translateY(-10px);
}
.cid-ujgfciPsj3 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-ujgfciPsj3 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-ujgfciPsj3 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-ujgfciPsj3 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujgfciPsj3 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-ujgfciPsj3 .social-row {
  text-align: center;
}
.cid-ujgfciPsj3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ujgfciPsj3 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-ujgfciPsj3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ujgfciPsj3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-ujgfciPsj3 .mbr-section-title {
  color: #ffffff;
}
.cid-ujgfciPsj3 .mbr-role,
.cid-ujgfciPsj3 .social-row {
  color: #ffffff;
}
.cid-ujgfciPsj3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujgfciPsj3 .card-text,
.cid-ujgfciPsj3 .mbr-section-btn,
.cid-ujgfciPsj3 .social-row {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uATlVgeG53 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uATlVgeG53 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uATlVgeG53 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uATlVgeG53 .video-wrapper iframe {
  width: 100%;
}
.cid-uATlVgeG53 .mbr-section-title,
.cid-uATlVgeG53 .mbr-section-subtitle,
.cid-uATlVgeG53 .mbr-text {
  text-align: center;
}
.cid-uATlVgeG53 .mbr-text {
  color: #ffffff;
}
.cid-uATlVgeG53 .mbr-section-title {
  color: #ffffff;
}
.cid-uATlVgeG53 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxdCGKnxkS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uxdCGKnxkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxdCGKnxkS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxdCGKnxkS .video-wrapper iframe {
  width: 100%;
}
.cid-uxdCGKnxkS .mbr-section-title,
.cid-uxdCGKnxkS .mbr-section-subtitle,
.cid-uxdCGKnxkS .mbr-text {
  text-align: center;
}
.cid-uxdCGKnxkS .mbr-text {
  color: #ffffff;
}
.cid-uxdCGKnxkS .mbr-section-title {
  color: #ffffff;
}
.cid-uxdCGKnxkS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uq3IJjaaUi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uq3IJjaaUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq3IJjaaUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq3IJjaaUi .video-wrapper iframe {
  width: 100%;
}
.cid-uq3IJjaaUi .mbr-section-title,
.cid-uq3IJjaaUi .mbr-section-subtitle,
.cid-uq3IJjaaUi .mbr-text {
  text-align: center;
}
.cid-uq3IJjaaUi .mbr-text {
  color: #ffffff;
}
.cid-uq3IJjaaUi .mbr-section-title {
  color: #ffffff;
}
.cid-uq3IJjaaUi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umYutHdgqs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-umYutHdgqs .mbr-fallback-image.disabled {
  display: none;
}
.cid-umYutHdgqs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umYutHdgqs .video-wrapper iframe {
  width: 100%;
}
.cid-umYutHdgqs .mbr-section-title,
.cid-umYutHdgqs .mbr-section-subtitle,
.cid-umYutHdgqs .mbr-text {
  text-align: center;
}
.cid-umYutHdgqs .mbr-text {
  color: #ffffff;
}
.cid-ujoUE9UWFe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ujoUE9UWFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujoUE9UWFe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujoUE9UWFe .video-wrapper iframe {
  width: 100%;
}
.cid-ujoUE9UWFe .mbr-section-title,
.cid-ujoUE9UWFe .mbr-section-subtitle,
.cid-ujoUE9UWFe .mbr-text {
  text-align: center;
}
.cid-ujoUE9UWFe .mbr-text {
  color: #ffffff;
}
.cid-ujoUEy4HvK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ujoUEy4HvK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujoUEy4HvK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujoUEy4HvK .video-wrapper iframe {
  width: 100%;
}
.cid-ujoUEy4HvK .mbr-section-title,
.cid-ujoUEy4HvK .mbr-section-subtitle,
.cid-ujoUEy4HvK .mbr-text {
  text-align: center;
}
.cid-ujoUEy4HvK .mbr-text {
  color: #ffffff;
}
.cid-ujoUFM1N2e {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ujoUFM1N2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujoUFM1N2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujoUFM1N2e .video-wrapper iframe {
  width: 100%;
}
.cid-ujoUFM1N2e .mbr-section-title,
.cid-ujoUFM1N2e .mbr-section-subtitle,
.cid-ujoUFM1N2e .mbr-text {
  text-align: center;
}
.cid-ujoUFM1N2e .mbr-text {
  color: #ffffff;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4qas0SmA9 {
  background-color: #000000;
}
.cid-t4qas0SmA9 .mbr-text,
.cid-t4qas0SmA9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ufcipbOwOO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-ufcipbOwOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufcipbOwOO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufcipbOwOO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ufcipbOwOO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ufcipbOwOO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ufcipbOwOO .mbr-section-title {
  color: #ffffff;
}
.cid-ufcipbOwOO .mbr-text,
.cid-ufcipbOwOO .mbr-section-btn {
  color: #ffffff;
}
.cid-ufccKr0fX8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ufccKr0fX8 img,
.cid-ufccKr0fX8 .item-img {
  width: 100%;
}
.cid-ufccKr0fX8 .item:focus,
.cid-ufccKr0fX8 span:focus {
  outline: none;
}
.cid-ufccKr0fX8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ufccKr0fX8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufccKr0fX8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufccKr0fX8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ufccKr0fX8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufccKr0fX8 .mbr-section-title {
  color: #ffffff;
}
.cid-ufccKr0fX8 .mbr-text,
.cid-ufccKr0fX8 .mbr-section-btn {
  text-align: left;
}
.cid-ufccKr0fX8 .item-title {
  text-align: left;
}
.cid-ufccKr0fX8 .item-subtitle {
  text-align: left;
}
.cid-ufccKr0fX8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ufceayWBmV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ufceayWBmV img,
.cid-ufceayWBmV .item-img {
  width: 100%;
}
.cid-ufceayWBmV .item:focus,
.cid-ufceayWBmV span:focus {
  outline: none;
}
.cid-ufceayWBmV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ufceayWBmV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufceayWBmV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufceayWBmV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ufceayWBmV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufceayWBmV .mbr-section-title {
  color: #ffffff;
}
.cid-ufceayWBmV .mbr-text,
.cid-ufceayWBmV .mbr-section-btn {
  text-align: left;
}
.cid-ufceayWBmV .item-title {
  text-align: left;
}
.cid-ufceayWBmV .item-subtitle {
  text-align: left;
}
.cid-ufceayWBmV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ufcfyRPfU2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ufcfyRPfU2 img,
.cid-ufcfyRPfU2 .item-img {
  width: 100%;
}
.cid-ufcfyRPfU2 .item:focus,
.cid-ufcfyRPfU2 span:focus {
  outline: none;
}
.cid-ufcfyRPfU2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ufcfyRPfU2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufcfyRPfU2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufcfyRPfU2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ufcfyRPfU2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufcfyRPfU2 .mbr-section-title {
  color: #ffffff;
}
.cid-ufcfyRPfU2 .mbr-text,
.cid-ufcfyRPfU2 .mbr-section-btn {
  text-align: left;
}
.cid-ufcfyRPfU2 .item-title {
  text-align: left;
}
.cid-ufcfyRPfU2 .item-subtitle {
  text-align: left;
}
.cid-ufcfyRPfU2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ufcfz50sJA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ufcfz50sJA img,
.cid-ufcfz50sJA .item-img {
  width: 100%;
}
.cid-ufcfz50sJA .item:focus,
.cid-ufcfz50sJA span:focus {
  outline: none;
}
.cid-ufcfz50sJA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ufcfz50sJA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufcfz50sJA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufcfz50sJA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ufcfz50sJA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufcfz50sJA .mbr-section-title {
  color: #ffffff;
}
.cid-ufcfz50sJA .mbr-text,
.cid-ufcfz50sJA .mbr-section-btn {
  text-align: left;
}
.cid-ufcfz50sJA .item-title {
  text-align: left;
}
.cid-ufcfz50sJA .item-subtitle {
  text-align: left;
}
.cid-ufcfz50sJA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vab06BmzR9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-vab06BmzR9 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vab06BmzR9 .team-card:hover {
  transform: translateY(-10px);
}
.cid-vab06BmzR9 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vab06BmzR9 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vab06BmzR9 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-vab06BmzR9 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vab06BmzR9 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-vab06BmzR9 .social-row {
  text-align: center;
}
.cid-vab06BmzR9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vab06BmzR9 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-vab06BmzR9 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vab06BmzR9 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-vab06BmzR9 .mbr-section-title {
  color: #bbbbbb;
}
.cid-vab06BmzR9 .mbr-role,
.cid-vab06BmzR9 .social-row {
  color: #ff00ef;
}
.cid-vab06BmzR9 .mbr-section-subtitle {
  color: #ff00ef;
}
.cid-vab06BmzR9 .card-text,
.cid-vab06BmzR9 .mbr-section-btn,
.cid-vab06BmzR9 .social-row {
  color: #ffffff;
}
.cid-v5zACywWFX {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-v5zACywWFX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v5zACywWFX .team-card:hover {
  transform: translateY(-10px);
}
.cid-v5zACywWFX .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v5zACywWFX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v5zACywWFX .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v5zACywWFX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v5zACywWFX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v5zACywWFX .social-row {
  text-align: center;
}
.cid-v5zACywWFX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v5zACywWFX .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v5zACywWFX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v5zACywWFX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v5zACywWFX .mbr-section-title {
  color: #bbbbbb;
}
.cid-v5zACywWFX .mbr-role,
.cid-v5zACywWFX .social-row {
  color: #ff00ef;
}
.cid-v5zACywWFX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v5zACywWFX .card-text,
.cid-v5zACywWFX .mbr-section-btn,
.cid-v5zACywWFX .social-row {
  color: #ffffff;
}
.cid-uY2BPo7fnq {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uY2BPo7fnq .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uY2BPo7fnq .team-card:hover {
  transform: translateY(-10px);
}
.cid-uY2BPo7fnq .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uY2BPo7fnq .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uY2BPo7fnq .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uY2BPo7fnq .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uY2BPo7fnq .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uY2BPo7fnq .social-row {
  text-align: center;
}
.cid-uY2BPo7fnq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uY2BPo7fnq .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uY2BPo7fnq .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uY2BPo7fnq .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uY2BPo7fnq .mbr-section-title {
  color: #bbbbbb;
}
.cid-uY2BPo7fnq .mbr-role,
.cid-uY2BPo7fnq .social-row {
  color: #ff00ef;
}
.cid-uY2BPo7fnq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uY2BPo7fnq .card-text,
.cid-uY2BPo7fnq .mbr-section-btn,
.cid-uY2BPo7fnq .social-row {
  color: #ffffff;
}
.cid-uUUEV135q1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uUUEV135q1 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uUUEV135q1 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uUUEV135q1 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uUUEV135q1 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uUUEV135q1 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uUUEV135q1 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uUUEV135q1 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uUUEV135q1 .social-row {
  text-align: center;
}
.cid-uUUEV135q1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uUUEV135q1 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uUUEV135q1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uUUEV135q1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uUUEV135q1 .mbr-section-title {
  color: #bbbbbb;
}
.cid-uUUEV135q1 .mbr-role,
.cid-uUUEV135q1 .social-row {
  color: #ff00ef;
}
.cid-uUUEV135q1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUUEV135q1 .card-text,
.cid-uUUEV135q1 .mbr-section-btn,
.cid-uUUEV135q1 .social-row {
  color: #ffffff;
}
.cid-uMZ9qigAeg {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uMZ9qigAeg .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uMZ9qigAeg .team-card:hover {
  transform: translateY(-10px);
}
.cid-uMZ9qigAeg .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uMZ9qigAeg .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uMZ9qigAeg .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uMZ9qigAeg .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMZ9qigAeg .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uMZ9qigAeg .social-row {
  text-align: center;
}
.cid-uMZ9qigAeg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uMZ9qigAeg .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uMZ9qigAeg .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uMZ9qigAeg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uMZ9qigAeg .mbr-section-title {
  color: #bbbbbb;
}
.cid-uMZ9qigAeg .mbr-role,
.cid-uMZ9qigAeg .social-row {
  color: #ff00ef;
}
.cid-uMZ9qigAeg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMZ9qigAeg .card-text,
.cid-uMZ9qigAeg .mbr-section-btn,
.cid-uMZ9qigAeg .social-row {
  color: #ffffff;
}
.cid-uSh9RmCs0i {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uSh9RmCs0i .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uSh9RmCs0i .team-card:hover {
  transform: translateY(-10px);
}
.cid-uSh9RmCs0i .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uSh9RmCs0i .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uSh9RmCs0i .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uSh9RmCs0i .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSh9RmCs0i .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uSh9RmCs0i .social-row {
  text-align: center;
}
.cid-uSh9RmCs0i .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uSh9RmCs0i .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uSh9RmCs0i .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uSh9RmCs0i .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uSh9RmCs0i .mbr-section-title {
  color: #bbbbbb;
}
.cid-uSh9RmCs0i .mbr-role,
.cid-uSh9RmCs0i .social-row {
  color: #ff00ef;
}
.cid-uSh9RmCs0i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSh9RmCs0i .card-text,
.cid-uSh9RmCs0i .mbr-section-btn,
.cid-uSh9RmCs0i .social-row {
  color: #ffffff;
}
.cid-uKW1Kx0wM4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uKW1Kx0wM4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uKW1Kx0wM4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uKW1Kx0wM4 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uKW1Kx0wM4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uKW1Kx0wM4 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uKW1Kx0wM4 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKW1Kx0wM4 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uKW1Kx0wM4 .social-row {
  text-align: center;
}
.cid-uKW1Kx0wM4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uKW1Kx0wM4 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uKW1Kx0wM4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uKW1Kx0wM4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uKW1Kx0wM4 .mbr-section-title {
  color: #bbbbbb;
}
.cid-uKW1Kx0wM4 .mbr-role,
.cid-uKW1Kx0wM4 .social-row {
  color: #ff00ef;
}
.cid-uKW1Kx0wM4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKW1Kx0wM4 .card-text,
.cid-uKW1Kx0wM4 .mbr-section-btn,
.cid-uKW1Kx0wM4 .social-row {
  color: #ffffff;
}
.cid-uAIQLLJKh8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-uAIQLLJKh8 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uAIQLLJKh8 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uAIQLLJKh8 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uAIQLLJKh8 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uAIQLLJKh8 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uAIQLLJKh8 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAIQLLJKh8 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uAIQLLJKh8 .social-row {
  text-align: center;
}
.cid-uAIQLLJKh8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uAIQLLJKh8 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uAIQLLJKh8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uAIQLLJKh8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uAIQLLJKh8 .mbr-section-title {
  color: #bbbbbb;
}
.cid-uAIQLLJKh8 .mbr-role,
.cid-uAIQLLJKh8 .social-row {
  color: #ff00ef;
}
.cid-uAIQLLJKh8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAIQLLJKh8 .card-text,
.cid-uAIQLLJKh8 .mbr-section-btn,
.cid-uAIQLLJKh8 .social-row {
  color: #ffffff;
}
.cid-uAIRwbzeKn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uAIRwbzeKn .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uAIRwbzeKn form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uAIRwbzeKn form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uAIRwbzeKn form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAIRwbzeKn .mbr-section-title {
  color: #ffffff;
}
.cid-uAIRwbzeKn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAIRm4yjPK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uAIRm4yjPK .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSu2HOEoJQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uSu2HOEoJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSu2HOEoJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSu2HOEoJQ .video-wrapper iframe {
  width: 100%;
}
.cid-uSu2HOEoJQ .mbr-section-title,
.cid-uSu2HOEoJQ .mbr-section-subtitle,
.cid-uSu2HOEoJQ .mbr-text {
  text-align: center;
}
.cid-uSu2HOEoJQ .mbr-text {
  color: #ffffff;
}
.cid-uSu2HOEoJQ .mbr-section-title {
  color: #ffffff;
}
.cid-uSu2HOEoJQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQ3gCxIFmZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uQ3gCxIFmZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQ3gCxIFmZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQ3gCxIFmZ .video-wrapper iframe {
  width: 100%;
}
.cid-uQ3gCxIFmZ .mbr-section-title,
.cid-uQ3gCxIFmZ .mbr-section-subtitle,
.cid-uQ3gCxIFmZ .mbr-text {
  text-align: center;
}
.cid-uQ3gCxIFmZ .mbr-text {
  color: #ffffff;
}
.cid-uQ3gCxIFmZ .mbr-section-title {
  color: #ffffff;
}
.cid-uQ3gCxIFmZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLu20TCgaf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uLu20TCgaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLu20TCgaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLu20TCgaf .video-wrapper iframe {
  width: 100%;
}
.cid-uLu20TCgaf .mbr-section-title,
.cid-uLu20TCgaf .mbr-section-subtitle,
.cid-uLu20TCgaf .mbr-text {
  text-align: center;
}
.cid-uLu20TCgaf .mbr-text {
  color: #ffffff;
}
.cid-uLu20TCgaf .mbr-section-title {
  color: #ffffff;
}
.cid-uLu20TCgaf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKW2HAriI1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uKW2HAriI1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKW2HAriI1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKW2HAriI1 .video-wrapper iframe {
  width: 100%;
}
.cid-uKW2HAriI1 .mbr-section-title,
.cid-uKW2HAriI1 .mbr-section-subtitle,
.cid-uKW2HAriI1 .mbr-text {
  text-align: center;
}
.cid-uKW2HAriI1 .mbr-text {
  color: #ffffff;
}
.cid-uKW2HAriI1 .mbr-section-title {
  color: #ffffff;
}
.cid-uKW2HAriI1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFxKEKXUiL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uFxKEKXUiL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFxKEKXUiL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFxKEKXUiL .video-wrapper iframe {
  width: 100%;
}
.cid-uFxKEKXUiL .mbr-section-title,
.cid-uFxKEKXUiL .mbr-section-subtitle,
.cid-uFxKEKXUiL .mbr-text {
  text-align: center;
}
.cid-uFxKEKXUiL .mbr-text {
  color: #ffffff;
}
.cid-uFxKEKXUiL .mbr-section-title {
  color: #ffffff;
}
.cid-uFxKEKXUiL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uATk1t9xLH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uATk1t9xLH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uATk1t9xLH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uATk1t9xLH .video-wrapper iframe {
  width: 100%;
}
.cid-uATk1t9xLH .mbr-section-title,
.cid-uATk1t9xLH .mbr-section-subtitle,
.cid-uATk1t9xLH .mbr-text {
  text-align: center;
}
.cid-uATk1t9xLH .mbr-text {
  color: #ffffff;
}
.cid-uATk1t9xLH .mbr-section-title {
  color: #ffffff;
}
.cid-uATk1t9xLH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uATmfolDC7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uATmfolDC7 .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uB1eArdx3f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uB1eArdx3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB1eArdx3f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB1eArdx3f .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uB1eArdx3f .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uB1eArdx3f .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uB1eArdx3f .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uB1eArdx3f .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uB1eArdx3f .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uB1eArdx3f .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uB1eArdx3f .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uB1eArdx3f .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uB1eArdx3f .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uB1evQVWwu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uB1evQVWwu .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uB1evQVWwu form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uB1evQVWwu form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uB1evQVWwu form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uB1evQVWwu .mbr-section-title {
  color: #ffffff;
}
.cid-uB1edoucz0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uB1edoucz0 .media-container-row .mbr-text {
  color: #e43f3f;
}
.cid-sTYRZdXHyo {
  z-index: 1000;
  width: 100%;
}
.cid-sTYRZdXHyo nav.navbar {
  position: fixed;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sTYRZdXHyo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sTYRZdXHyo .dropdown-item:hover,
.cid-sTYRZdXHyo .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-sTYRZdXHyo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sTYRZdXHyo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sTYRZdXHyo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sTYRZdXHyo .nav-link {
  position: relative;
}
.cid-sTYRZdXHyo .container {
  display: flex;
  margin: auto;
}
.cid-sTYRZdXHyo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown-menu,
.cid-sTYRZdXHyo .navbar.opened {
  background: #353535 !important;
}
.cid-sTYRZdXHyo .nav-item:focus,
.cid-sTYRZdXHyo .nav-link:focus {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sTYRZdXHyo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sTYRZdXHyo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTYRZdXHyo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTYRZdXHyo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0);
}
.cid-sTYRZdXHyo .navbar.opened {
  transition: all 0.3s;
}
.cid-sTYRZdXHyo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sTYRZdXHyo .navbar .navbar-logo img {
  width: auto;
}
.cid-sTYRZdXHyo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar.collapsed {
  justify-content: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sTYRZdXHyo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTYRZdXHyo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTYRZdXHyo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTYRZdXHyo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sTYRZdXHyo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sTYRZdXHyo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTYRZdXHyo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTYRZdXHyo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sTYRZdXHyo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sTYRZdXHyo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTYRZdXHyo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sTYRZdXHyo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sTYRZdXHyo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTYRZdXHyo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTYRZdXHyo .dropdown-item.active,
.cid-sTYRZdXHyo .dropdown-item:active {
  background-color: transparent;
}
.cid-sTYRZdXHyo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sTYRZdXHyo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sTYRZdXHyo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sTYRZdXHyo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTYRZdXHyo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sTYRZdXHyo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sTYRZdXHyo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTYRZdXHyo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTYRZdXHyo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTYRZdXHyo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sTYRZdXHyo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sTYRZdXHyo .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-sTYRZdXHyo .navbar {
    height: 70px;
  }
  .cid-sTYRZdXHyo .navbar.opened {
    height: auto;
  }
  .cid-sTYRZdXHyo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdY0mlhOCz {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-vdY0mlhOCz .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vdY0mlhOCz .team-card:hover {
  transform: translateY(-10px);
}
.cid-vdY0mlhOCz .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vdY0mlhOCz .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vdY0mlhOCz .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-vdY0mlhOCz .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vdY0mlhOCz .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-vdY0mlhOCz .social-row {
  text-align: center;
}
.cid-vdY0mlhOCz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vdY0mlhOCz .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-vdY0mlhOCz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vdY0mlhOCz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-vdY0mlhOCz .mbr-section-title {
  color: #bbbbbb;
}
.cid-vdY0mlhOCz .mbr-role,
.cid-vdY0mlhOCz .social-row {
  color: #ff00ef;
}
.cid-vdY0mlhOCz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdY0mlhOCz .card-text,
.cid-vdY0mlhOCz .mbr-section-btn,
.cid-vdY0mlhOCz .social-row {
  color: #ffffff;
}
.cid-vkn35pMb30 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background: #000000;
}
.cid-vkn35pMb30 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vkn35pMb30 .team-card:hover {
  transform: translateY(-10px);
}
.cid-vkn35pMb30 .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vkn35pMb30 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vkn35pMb30 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-vkn35pMb30 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vkn35pMb30 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-vkn35pMb30 .social-row {
  text-align: center;
}
.cid-vkn35pMb30 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vkn35pMb30 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-vkn35pMb30 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vkn35pMb30 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-vkn35pMb30 .mbr-section-title {
  color: #bbbbbb;
}
.cid-vkn35pMb30 .mbr-role,
.cid-vkn35pMb30 .social-row {
  color: #ff00ef;
}
.cid-vkn35pMb30 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vkn35pMb30 .card-text,
.cid-vkn35pMb30 .mbr-section-btn,
.cid-vkn35pMb30 .social-row {
  color: #ffffff;
}
.cid-sifRJhpx7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sifRJhpx7O .media-container-row .mbr-text {
  color: #e43f3f;
}
