body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Epilogue', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'Epilogue', sans-serif;
  font-size: 2.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-4 {
  font-family: 'Abel', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Abel', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Abel', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.455rem + (2.3 - 1.455) * ((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.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))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #fafafa !important;
}
.bg-success {
  background-color: #22a5e5 !important;
}
.bg-info {
  background-color: #e43f3f !important;
}
.bg-warning {
  background-color: #44c200 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #379683 !important;
  border-color: #379683 !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: #20574c !important;
  border-color: #20574c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #20574c !important;
  border-color: #20574c !important;
}
.btn-info,
.btn-info: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-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.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-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-success,
.btn-success:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !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: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #44c200 !important;
  border-color: #44c200 !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: #266b00 !important;
  border-color: #266b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #266b00 !important;
  border-color: #266b00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #379683;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #20574c !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: #379683 !important;
  border-color: #379683 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #13709e !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: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #44c200;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #266b00 !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: #44c200 !important;
  border-color: #44c200 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fafafa !important;
}
.text-secondary {
  color: #379683 !important;
}
.text-success {
  color: #22a5e5 !important;
}
.text-info {
  color: #e43f3f !important;
}
.text-warning {
  color: #44c200 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c7c7c7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1c4b42 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #116690 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a61717 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #205c00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fafafa;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e43f3f;
}
.alert-warning {
  background-color: #44c200;
}
.alert-danger {
  background-color: #ff9966;
}
.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: #fafafa;
  border-color: #fafafa;
  color: #878787;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fafafa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #85ff42;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Abel', 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: #fafafa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Abel', 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: #fafafa;
}
/* 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: #fafafa;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fafafa;
}
.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: #fafafa;
  border-bottom-color: #fafafa;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fafafa !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #379683 !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='%23fafafa' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFGzlAXw3z {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGzlAXw3z nav.navbar {
  position: fixed;
}
.cid-sFGzlAXw3z .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-sFGzlAXw3z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGzlAXw3z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGzlAXw3z .dropdown-item:hover,
.cid-sFGzlAXw3z .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-sFGzlAXw3z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGzlAXw3z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGzlAXw3z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGzlAXw3z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGzlAXw3z .nav-link {
  position: relative;
}
.cid-sFGzlAXw3z .container {
  display: flex;
  margin: auto;
}
.cid-sFGzlAXw3z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGzlAXw3z .dropdown-menu,
.cid-sFGzlAXw3z .navbar.opened {
  background: #353535 !important;
}
.cid-sFGzlAXw3z .nav-item:focus,
.cid-sFGzlAXw3z .nav-link:focus {
  outline: none;
}
.cid-sFGzlAXw3z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGzlAXw3z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGzlAXw3z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGzlAXw3z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGzlAXw3z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGzlAXw3z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGzlAXw3z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-sFGzlAXw3z .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGzlAXw3z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGzlAXw3z .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGzlAXw3z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGzlAXw3z .navbar.collapsed {
  justify-content: center;
}
.cid-sFGzlAXw3z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGzlAXw3z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFGzlAXw3z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGzlAXw3z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGzlAXw3z .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-sFGzlAXw3z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGzlAXw3z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGzlAXw3z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGzlAXw3z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGzlAXw3z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGzlAXw3z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGzlAXw3z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGzlAXw3z .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-sFGzlAXw3z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGzlAXw3z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGzlAXw3z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGzlAXw3z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGzlAXw3z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGzlAXw3z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGzlAXw3z .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGzlAXw3z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGzlAXw3z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGzlAXw3z .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFGzlAXw3z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGzlAXw3z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGzlAXw3z .dropdown-item.active,
.cid-sFGzlAXw3z .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGzlAXw3z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGzlAXw3z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGzlAXw3z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGzlAXw3z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-sFGzlAXw3z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGzlAXw3z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGzlAXw3z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGzlAXw3z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGzlAXw3z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGzlAXw3z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFGzlAXw3z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGzlAXw3z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGzlAXw3z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGzlAXw3z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGzlAXw3z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGzlAXw3z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGzlAXw3z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGzlAXw3z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGzlAXw3z .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGzlAXw3z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGzlAXw3z .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-sFGzlAXw3z .navbar {
    height: 70px;
  }
  .cid-sFGzlAXw3z .navbar.opened {
    height: auto;
  }
  .cid-sFGzlAXw3z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v29MT2UcmA {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/produtora20de20video20intitucional-1920x1057.jpg");
}
.cid-v29MT2UcmA .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-v29MT2UcmA .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-v29MT2UcmA .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-v29MT2UcmA .mbr-text {
  color: #ffffff;
}
.cid-v29MT2UcmA .card {
  padding-bottom: 1.5rem;
}
.cid-v29MT2UcmA .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v29MT2UcmA .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-v29MT2UcmA .card-wrapper .card-title {
  color: #ffffff;
}
.cid-v29MT2UcmA H1 {
  color: #ffffff;
}
.cid-v29MT2UcmA .mbr-text,
.cid-v29MT2UcmA .mbr-section-btn {
  color: #ffffff;
}
.cid-v29MT2UcmA .card-wrapper .card-title,
.cid-v29MT2UcmA .card-box {
  color: #ffffff;
}
.cid-v2r3fAn5Ke {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2r3fAn5Ke img,
.cid-v2r3fAn5Ke .item-img {
  width: 100%;
}
.cid-v2r3fAn5Ke .item:focus,
.cid-v2r3fAn5Ke span:focus {
  outline: none;
}
.cid-v2r3fAn5Ke .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2r3fAn5Ke .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2r3fAn5Ke .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2r3fAn5Ke .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2r3fAn5Ke .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2r3fAn5Ke .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2r3fAn5Ke .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2r3fAn5Ke .mbr-section-title {
  color: #ffffff;
}
.cid-v2r3fAn5Ke .mbr-text,
.cid-v2r3fAn5Ke .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2r3fAn5Ke .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2r3fAn5Ke .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2r3fAn5Ke .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aPtMS4Tz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2aPtMS4Tz img,
.cid-v2aPtMS4Tz .item-img {
  width: 100%;
}
.cid-v2aPtMS4Tz .item:focus,
.cid-v2aPtMS4Tz span:focus {
  outline: none;
}
.cid-v2aPtMS4Tz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2aPtMS4Tz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2aPtMS4Tz .item {
  padding: 0;
  margin: 0;
}
.cid-v2aPtMS4Tz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2aPtMS4Tz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2aPtMS4Tz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2aPtMS4Tz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2aPtMS4Tz .mbr-section-title {
  color: #232323;
}
.cid-v2aPtMS4Tz .mbr-text,
.cid-v2aPtMS4Tz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2aPtMS4Tz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2aPtMS4Tz .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2aPtMS4Tz .mbr-section-subtitle {
  color: #000000;
}
.cid-v2snCDY1PZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2snCDY1PZ img,
.cid-v2snCDY1PZ .item-img {
  width: 100%;
}
.cid-v2snCDY1PZ .item:focus,
.cid-v2snCDY1PZ span:focus {
  outline: none;
}
.cid-v2snCDY1PZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2snCDY1PZ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2snCDY1PZ .item {
  padding: 0;
  margin: 0;
}
.cid-v2snCDY1PZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2snCDY1PZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2snCDY1PZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2snCDY1PZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2snCDY1PZ .mbr-section-title {
  color: #ffffff;
}
.cid-v2snCDY1PZ .mbr-text,
.cid-v2snCDY1PZ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2snCDY1PZ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2snCDY1PZ .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2snCDY1PZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2snDNqSSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2snDNqSSg img,
.cid-v2snDNqSSg .item-img {
  width: 100%;
}
.cid-v2snDNqSSg .item:focus,
.cid-v2snDNqSSg span:focus {
  outline: none;
}
.cid-v2snDNqSSg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2snDNqSSg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2snDNqSSg .item {
  padding: 0;
  margin: 0;
}
.cid-v2snDNqSSg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2snDNqSSg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2snDNqSSg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2snDNqSSg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2snDNqSSg .mbr-section-title {
  color: #ffffff;
}
.cid-v2snDNqSSg .mbr-text,
.cid-v2snDNqSSg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2snDNqSSg .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2snDNqSSg .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2snDNqSSg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2snEvAncY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2snEvAncY img,
.cid-v2snEvAncY .item-img {
  width: 100%;
}
.cid-v2snEvAncY .item:focus,
.cid-v2snEvAncY span:focus {
  outline: none;
}
.cid-v2snEvAncY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2snEvAncY .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2snEvAncY .item {
  padding: 0;
  margin: 0;
}
.cid-v2snEvAncY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2snEvAncY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2snEvAncY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2snEvAncY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2snEvAncY .mbr-section-title {
  color: #ffffff;
}
.cid-v2snEvAncY .mbr-text,
.cid-v2snEvAncY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2snEvAncY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2snEvAncY .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2snEvAncY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2rbxYx3By {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1YjwJXvCO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v1YjwJXvCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1YjwJXvCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1YjwJXvCO .mbr-section-title {
  color: #000000;
}
.cid-v2snKW7k6Z {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2snKW7k6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2snKW7k6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2snKW7k6Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2snKW7k6Z .row {
  flex-direction: row-reverse;
}
.cid-v2snKW7k6Z img {
  width: 100%;
}
.cid-v1Tu8XBU3o {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v1YjGfkoeI {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v1YjGfkoeI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1YjGfkoeI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1YjGfkoeI .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v1YjGfkoeI .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v1YjGfkoeI .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1YjGfkoeI .card {
    margin-bottom: 2rem;
  }
  .cid-v1YjGfkoeI .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2wK874VDn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2wK874VDn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wK874VDn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2wK874VDn .row {
    flex-direction: column-reverse;
  }
  .cid-v2wK874VDn .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2wK874VDn .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2wK874VDn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2wK874VDn .media-content,
.cid-v2wK874VDn .mbr-figure {
  align-self: center;
}
.cid-v2wK874VDn .mbr-figure iframe {
  width: 100%;
}
.cid-v2wK874VDn .mbr-section-title {
  color: #232323;
}
.cid-v2wK874VDn .mbr-text,
.cid-v2wK874VDn .mbr-section-btn {
  color: #000000;
}
.cid-v1YjKhVNYY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v1YjKhVNYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1YjKhVNYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v1YjKhVNYY .row {
    flex-direction: column-reverse;
  }
  .cid-v1YjKhVNYY .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v1YjKhVNYY .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v1YjKhVNYY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v1YjKhVNYY .media-content,
.cid-v1YjKhVNYY .mbr-figure {
  align-self: center;
}
.cid-v1YjKhVNYY .mbr-figure iframe {
  width: 100%;
}
.cid-v1YjKhVNYY .mbr-section-title {
  color: #ffb18a;
}
.cid-v1YjKhVNYY .mbr-text,
.cid-v1YjKhVNYY .mbr-section-btn {
  color: #ffffff;
}
.cid-v1YliCDDkz {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v1YliCDDkz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1YliCDDkz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1YliCDDkz .mbr-text {
  color: #767676;
}
.cid-v1YliCDDkz .mbr-section-subtitle {
  color: #767676;
}
.cid-v1YliCDDkz .title .num {
  width: 100%;
  display: block;
}
.cid-v1YliCDDkz .title .card-title {
  z-index: 1;
}
.cid-v1YliCDDkz .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v1YliCDDkz * {
    text-align: center !important;
  }
  .cid-v1YliCDDkz .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v1YliCDDkz .card-title,
.cid-v1YliCDDkz .card-img {
  color: #ffffff;
}
.cid-v1YliCDDkz .mbr-section-title,
.cid-v1YliCDDkz .card-box {
  color: #ffffff;
}
.cid-v1YliCDDkz .mbr-text,
.cid-v1YliCDDkz .mbr-section-btn {
  color: #ffffff;
}
.cid-v1Ykseu5Ch {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v1Ykseu5Ch .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1Ykseu5Ch .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v1Ykseu5Ch .container {
    max-width: 1400px;
  }
}
.cid-v1Ykseu5Ch .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v1Ykseu5Ch .card-wrapper {
  margin-top: 3rem;
}
.cid-v1Ykseu5Ch .row {
  justify-content: center;
}
.cid-v1Ykseu5Ch .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v1Ykseu5Ch .card-title,
.cid-v1Ykseu5Ch .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v1Ykseu5Ch .mbr-section-title {
  color: #ffffff;
}
.cid-v1Ykseu5Ch .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1TumuQO9o {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2snOu0jDJ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #353535;
}
.cid-v2snOu0jDJ .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v2snOu0jDJ .team-card:hover {
  transform: translateY(-10px);
}
.cid-v2snOu0jDJ .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v2snOu0jDJ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v2snOu0jDJ .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v2snOu0jDJ .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2snOu0jDJ .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v2snOu0jDJ .social-row {
  text-align: center;
}
.cid-v2snOu0jDJ .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 #c37a7a;
  transition: all 0.3s;
}
.cid-v2snOu0jDJ .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #c37a7a;
  font-size: 1.5rem;
}
.cid-v2snOu0jDJ .social-row .soc-item:hover {
  background-color: #c37a7a;
}
.cid-v2snOu0jDJ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v2snOu0jDJ .card-title,
.cid-v2snOu0jDJ .social-row {
  color: #c7493a;
}
.cid-v2snOu0jDJ .card-text,
.cid-v2snOu0jDJ .mbr-section-btn,
.cid-v2snOu0jDJ .social-row {
  color: #ffffff;
}
.cid-v2snOu0jDJ .mbr-role,
.cid-v2snOu0jDJ .social-row {
  color: #c37a7a;
}
.cid-v2snOu0jDJ .mbr-section-title {
  color: #ffffff;
}
.cid-v1TygOJXXB {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v1YkygJwOO {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #d3d7d9;
}
.cid-v1YkygJwOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1YkygJwOO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v1YkygJwOO .container {
    max-width: 1400px;
  }
}
.cid-v1YkygJwOO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v1YkygJwOO .card-wrapper {
  margin-top: 3rem;
}
.cid-v1YkygJwOO .row {
  justify-content: center;
}
.cid-v1TuBdoawA {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #d3d7d9;
}
.cid-v2snSLAbw6 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2snSLAbw6 img,
.cid-v2snSLAbw6 .item-img {
  width: 100%;
}
.cid-v2snSLAbw6 .item:focus,
.cid-v2snSLAbw6 span:focus {
  outline: none;
}
.cid-v2snSLAbw6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2snSLAbw6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2snSLAbw6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2snSLAbw6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2snSLAbw6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2snSLAbw6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2snSLAbw6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2snSLAbw6 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2snSLAbw6 .mbr-text,
.cid-v2snSLAbw6 .mbr-section-btn {
  text-align: left;
}
.cid-v2snSLAbw6 .item-title {
  text-align: left;
}
.cid-v2snSLAbw6 .item-subtitle {
  text-align: left;
}
.cid-v2snSLAbw6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1YkzCCs7E {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v1YkzCCs7E .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v1YkzCCs7E .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v1YkzCCs7E .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v1YkzCCs7E .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v1YkzCCs7E .mbr-section-title {
  color: #ffffff;
}
.cid-v1YkzCCs7E .card-title {
  color: #ffffff;
}
.cid-v1YkzCCs7E .mbr-text {
  color: #ffffff;
}
.cid-v1YkzCCs7E .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1YkzCCs7E .link {
  color: #44c200;
}
.cid-v1YvPeHyMK {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v1YvPeHyMK p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v1YvPeHyMK .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v1YvPeHyMK .collapsed {
  border: none;
}
.cid-v1YvPeHyMK .collapsed span {
  transform: rotate(0deg);
}
.cid-v1YvPeHyMK span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v1YvPeHyMK .panel-body {
  padding-top: 0.5rem;
}
.cid-v1YvPeHyMK .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v1YvPeHyMK .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v1YvPeHyMK .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v1YvPeHyMK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v1YvPeHyMK .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v1YvPeHyMK .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v1YvPeHyMK .panel-text {
  color: #ffffff;
}
.cid-v1YvPeHyMK H4 {
  color: #ffffff;
}
.cid-v1YvPeHyMK H2 {
  color: #ffffff;
}
.cid-v1YvPeHyMK .mbr-section-text {
  color: #ffffff;
}
.cid-v1YvPeHyMK H3 {
  color: #ffffff;
}
.cid-sFGDg6hy8z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-sFGDg6hy8z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sFGDg6hy8z .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFGDg6hy8z .row {
    text-align: center;
  }
  .cid-sFGDg6hy8z .social-row {
    justify-content: center;
  }
}
.cid-sFGDg6hy8z .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sFGDg6hy8z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFGDg6hy8z .list {
    margin-bottom: 0rem;
  }
}
.cid-sFGDg6hy8z .mbr-text {
  color: #fafafa;
}
.cid-sFGDg6hy8z .mbr-iconfont {
  color: black;
}
.cid-sFGDg6hy8z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1YG26Hv5P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1YG26Hv5P nav.navbar {
  position: fixed;
}
.cid-v1YG26Hv5P .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-v1YG26Hv5P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1YG26Hv5P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1YG26Hv5P .dropdown-item:hover,
.cid-v1YG26Hv5P .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v1YG26Hv5P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1YG26Hv5P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1YG26Hv5P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1YG26Hv5P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1YG26Hv5P .nav-link {
  position: relative;
}
.cid-v1YG26Hv5P .container {
  display: flex;
  margin: auto;
}
.cid-v1YG26Hv5P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1YG26Hv5P .dropdown-menu,
.cid-v1YG26Hv5P .navbar.opened {
  background: #353535 !important;
}
.cid-v1YG26Hv5P .nav-item:focus,
.cid-v1YG26Hv5P .nav-link:focus {
  outline: none;
}
.cid-v1YG26Hv5P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1YG26Hv5P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1YG26Hv5P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1YG26Hv5P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1YG26Hv5P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1YG26Hv5P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1YG26Hv5P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v1YG26Hv5P .navbar.opened {
  transition: all 0.3s;
}
.cid-v1YG26Hv5P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1YG26Hv5P .navbar .navbar-logo img {
  width: auto;
}
.cid-v1YG26Hv5P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1YG26Hv5P .navbar.collapsed {
  justify-content: center;
}
.cid-v1YG26Hv5P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1YG26Hv5P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v1YG26Hv5P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1YG26Hv5P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1YG26Hv5P .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-v1YG26Hv5P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1YG26Hv5P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1YG26Hv5P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1YG26Hv5P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1YG26Hv5P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1YG26Hv5P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1YG26Hv5P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1YG26Hv5P .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-v1YG26Hv5P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1YG26Hv5P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1YG26Hv5P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1YG26Hv5P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1YG26Hv5P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1YG26Hv5P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1YG26Hv5P .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1YG26Hv5P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1YG26Hv5P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1YG26Hv5P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1YG26Hv5P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1YG26Hv5P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1YG26Hv5P .dropdown-item.active,
.cid-v1YG26Hv5P .dropdown-item:active {
  background-color: transparent;
}
.cid-v1YG26Hv5P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1YG26Hv5P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1YG26Hv5P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1YG26Hv5P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v1YG26Hv5P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1YG26Hv5P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1YG26Hv5P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1YG26Hv5P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1YG26Hv5P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1YG26Hv5P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1YG26Hv5P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1YG26Hv5P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1YG26Hv5P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1YG26Hv5P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1YG26Hv5P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1YG26Hv5P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1YG26Hv5P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1YG26Hv5P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1YG26Hv5P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1YG26Hv5P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1YG26Hv5P .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-v1YG26Hv5P .navbar {
    height: 70px;
  }
  .cid-v1YG26Hv5P .navbar.opened {
    height: auto;
  }
  .cid-v1YG26Hv5P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2mp4f2Nnq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mp4f2Nnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mp4f2Nnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mp4f2Nnq .row {
    flex-direction: column-reverse;
  }
  .cid-v2mp4f2Nnq .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mp4f2Nnq .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mp4f2Nnq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mp4f2Nnq .media-content,
.cid-v2mp4f2Nnq .mbr-figure {
  align-self: center;
}
.cid-v2mp4f2Nnq .mbr-figure iframe {
  width: 100%;
}
.cid-v2mp4f2Nnq .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mp4f2Nnq .mbr-text,
.cid-v2mp4f2Nnq .mbr-section-btn {
  color: #ffffff;
}
.cid-v2soI0PWHM {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2soI0PWHM img,
.cid-v2soI0PWHM .item-img {
  width: 100%;
}
.cid-v2soI0PWHM .item:focus,
.cid-v2soI0PWHM span:focus {
  outline: none;
}
.cid-v2soI0PWHM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2soI0PWHM .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2soI0PWHM .item {
  padding: 0;
  margin: 0;
}
.cid-v2soI0PWHM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2soI0PWHM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2soI0PWHM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2soI0PWHM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2soI0PWHM .mbr-section-title {
  color: #232323;
}
.cid-v2soI0PWHM .mbr-text,
.cid-v2soI0PWHM .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2soI0PWHM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2soI0PWHM .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2soI0PWHM .mbr-section-subtitle {
  color: #000000;
}
.cid-v2soKEE59R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2soKEE59R img,
.cid-v2soKEE59R .item-img {
  width: 100%;
}
.cid-v2soKEE59R .item:focus,
.cid-v2soKEE59R span:focus {
  outline: none;
}
.cid-v2soKEE59R .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2soKEE59R .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2soKEE59R .item {
  padding: 0;
  margin: 0;
}
.cid-v2soKEE59R .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2soKEE59R .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2soKEE59R .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2soKEE59R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2soKEE59R .mbr-section-title {
  color: #ffffff;
}
.cid-v2soKEE59R .mbr-text,
.cid-v2soKEE59R .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2soKEE59R .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2soKEE59R .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2soKEE59R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2soLmnGSn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2soLmnGSn img,
.cid-v2soLmnGSn .item-img {
  width: 100%;
}
.cid-v2soLmnGSn .item:focus,
.cid-v2soLmnGSn span:focus {
  outline: none;
}
.cid-v2soLmnGSn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2soLmnGSn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2soLmnGSn .item {
  padding: 0;
  margin: 0;
}
.cid-v2soLmnGSn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2soLmnGSn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2soLmnGSn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2soLmnGSn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2soLmnGSn .mbr-section-title {
  color: #ffffff;
}
.cid-v2soLmnGSn .mbr-text,
.cid-v2soLmnGSn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2soLmnGSn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2soLmnGSn .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2soLmnGSn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2soM0U32a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2soM0U32a img,
.cid-v2soM0U32a .item-img {
  width: 100%;
}
.cid-v2soM0U32a .item:focus,
.cid-v2soM0U32a span:focus {
  outline: none;
}
.cid-v2soM0U32a .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2soM0U32a .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2soM0U32a .item {
  padding: 0;
  margin: 0;
}
.cid-v2soM0U32a .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2soM0U32a .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2soM0U32a .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2soM0U32a .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2soM0U32a .mbr-section-title {
  color: #ffffff;
}
.cid-v2soM0U32a .mbr-text,
.cid-v2soM0U32a .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2soM0U32a .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2soM0U32a .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2soM0U32a .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mpxcqqZd {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sp1QHJvW {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sp1QHJvW img,
.cid-v2sp1QHJvW .item-img {
  width: 100%;
}
.cid-v2sp1QHJvW .item:focus,
.cid-v2sp1QHJvW span:focus {
  outline: none;
}
.cid-v2sp1QHJvW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sp1QHJvW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sp1QHJvW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sp1QHJvW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sp1QHJvW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sp1QHJvW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sp1QHJvW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sp1QHJvW .mbr-section-title {
  color: #ffffff;
}
.cid-v2sp1QHJvW .mbr-text,
.cid-v2sp1QHJvW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sp1QHJvW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sp1QHJvW .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sp1QHJvW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mpzvPEGf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mpzvPEGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mpzvPEGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mpzvPEGf .row {
    flex-direction: column-reverse;
  }
  .cid-v2mpzvPEGf .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mpzvPEGf .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mpzvPEGf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mpzvPEGf .media-content,
.cid-v2mpzvPEGf .mbr-figure {
  align-self: center;
}
.cid-v2mpzvPEGf .mbr-figure iframe {
  width: 100%;
}
.cid-v2mpzvPEGf .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mpzvPEGf .mbr-text,
.cid-v2mpzvPEGf .mbr-section-btn {
  color: #ffffff;
}
.cid-v2rbNxRbEa {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2rbNxRbEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rbNxRbEa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rbNxRbEa .mbr-section-title {
  color: #000000;
}
.cid-v2spi9e3dE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2spi9e3dE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2spi9e3dE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2spi9e3dE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2spi9e3dE .row {
  flex-direction: row-reverse;
}
.cid-v2spi9e3dE img {
  width: 100%;
}
.cid-v2rbORBaCu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2mpAZ9Ozm {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2mpAZ9Ozm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mpAZ9Ozm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mpAZ9Ozm .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2mpAZ9Ozm .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2mpAZ9Ozm .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2mpAZ9Ozm .card {
    margin-bottom: 2rem;
  }
  .cid-v2mpAZ9Ozm .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2mpCakZai {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2mpCakZai .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mpCakZai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2mpCakZai .container {
    max-width: 1400px;
  }
}
.cid-v2mpCakZai .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2mpCakZai .card-wrapper {
  margin-top: 3rem;
}
.cid-v2mpCakZai .row {
  justify-content: center;
}
.cid-v2mpCakZai .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2mpCakZai .card-title,
.cid-v2mpCakZai .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2mpCakZai .mbr-section-title {
  color: #ffffff;
}
.cid-v2mpCakZai .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mpCD6rnN {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sxd7wf7j {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sxd7wf7j img,
.cid-v2sxd7wf7j .item-img {
  width: 100%;
}
.cid-v2sxd7wf7j .item:focus,
.cid-v2sxd7wf7j span:focus {
  outline: none;
}
.cid-v2sxd7wf7j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sxd7wf7j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sxd7wf7j .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sxd7wf7j .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sxd7wf7j .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sxd7wf7j .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sxd7wf7j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sxd7wf7j .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sxd7wf7j .mbr-text,
.cid-v2sxd7wf7j .mbr-section-btn {
  text-align: left;
}
.cid-v2sxd7wf7j .item-title {
  text-align: left;
}
.cid-v2sxd7wf7j .item-subtitle {
  text-align: left;
}
.cid-v2sxd7wf7j .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mpLf4EQe {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mpLf4EQe .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2mpLf4EQe .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2mpLf4EQe .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mpLf4EQe .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2mpLf4EQe .mbr-section-title {
  color: #ffffff;
}
.cid-v2mpLf4EQe .card-title {
  color: #ffffff;
}
.cid-v2mpLf4EQe .mbr-text {
  color: #ffffff;
}
.cid-v2mpLf4EQe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mpLf4EQe .link {
  color: #44c200;
}
.cid-v2mpMfRrBz {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2mpMfRrBz p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2mpMfRrBz .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2mpMfRrBz .collapsed {
  border: none;
}
.cid-v2mpMfRrBz .collapsed span {
  transform: rotate(0deg);
}
.cid-v2mpMfRrBz span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2mpMfRrBz .panel-body {
  padding-top: 0.5rem;
}
.cid-v2mpMfRrBz .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2mpMfRrBz .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2mpMfRrBz .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2mpMfRrBz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2mpMfRrBz .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2mpMfRrBz .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2mpMfRrBz .panel-text {
  color: #ffffff;
}
.cid-v2mpMfRrBz H4 {
  color: #ffffff;
}
.cid-v2mpMfRrBz H2 {
  color: #ffffff;
}
.cid-v2mpMfRrBz .mbr-section-text {
  color: #ffffff;
}
.cid-v2mpMfRrBz H3 {
  color: #ffffff;
}
.cid-v2mpMRPJRI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2mpMRPJRI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2mpMRPJRI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2mpMRPJRI .row {
    text-align: center;
  }
  .cid-v2mpMRPJRI .social-row {
    justify-content: center;
  }
}
.cid-v2mpMRPJRI .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2mpMRPJRI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mpMRPJRI .list {
    margin-bottom: 0rem;
  }
}
.cid-v2mpMRPJRI .mbr-text {
  color: #fafafa;
}
.cid-v2mpMRPJRI .mbr-iconfont {
  color: black;
}
.cid-v2mpMRPJRI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v29HQq4aTL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29HQq4aTL nav.navbar {
  position: fixed;
}
.cid-v29HQq4aTL .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-v29HQq4aTL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29HQq4aTL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29HQq4aTL .dropdown-item:hover,
.cid-v29HQq4aTL .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v29HQq4aTL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29HQq4aTL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29HQq4aTL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29HQq4aTL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29HQq4aTL .nav-link {
  position: relative;
}
.cid-v29HQq4aTL .container {
  display: flex;
  margin: auto;
}
.cid-v29HQq4aTL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29HQq4aTL .dropdown-menu,
.cid-v29HQq4aTL .navbar.opened {
  background: #353535 !important;
}
.cid-v29HQq4aTL .nav-item:focus,
.cid-v29HQq4aTL .nav-link:focus {
  outline: none;
}
.cid-v29HQq4aTL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29HQq4aTL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29HQq4aTL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29HQq4aTL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29HQq4aTL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29HQq4aTL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29HQq4aTL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v29HQq4aTL .navbar.opened {
  transition: all 0.3s;
}
.cid-v29HQq4aTL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29HQq4aTL .navbar .navbar-logo img {
  width: auto;
}
.cid-v29HQq4aTL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29HQq4aTL .navbar.collapsed {
  justify-content: center;
}
.cid-v29HQq4aTL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29HQq4aTL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29HQq4aTL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29HQq4aTL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29HQq4aTL .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-v29HQq4aTL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29HQq4aTL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29HQq4aTL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29HQq4aTL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29HQq4aTL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29HQq4aTL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29HQq4aTL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29HQq4aTL .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-v29HQq4aTL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29HQq4aTL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29HQq4aTL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29HQq4aTL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29HQq4aTL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29HQq4aTL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29HQq4aTL .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29HQq4aTL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29HQq4aTL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29HQq4aTL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29HQq4aTL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29HQq4aTL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29HQq4aTL .dropdown-item.active,
.cid-v29HQq4aTL .dropdown-item:active {
  background-color: transparent;
}
.cid-v29HQq4aTL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29HQq4aTL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29HQq4aTL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29HQq4aTL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v29HQq4aTL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29HQq4aTL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29HQq4aTL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29HQq4aTL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29HQq4aTL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29HQq4aTL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29HQq4aTL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29HQq4aTL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29HQq4aTL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29HQq4aTL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29HQq4aTL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29HQq4aTL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29HQq4aTL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29HQq4aTL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29HQq4aTL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29HQq4aTL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29HQq4aTL .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-v29HQq4aTL .navbar {
    height: 70px;
  }
  .cid-v29HQq4aTL .navbar.opened {
    height: auto;
  }
  .cid-v29HQq4aTL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2mt670P9o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mt670P9o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mt670P9o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mt670P9o .row {
    flex-direction: column-reverse;
  }
  .cid-v2mt670P9o .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mt670P9o .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mt670P9o .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mt670P9o .media-content,
.cid-v2mt670P9o .mbr-figure {
  align-self: center;
}
.cid-v2mt670P9o .mbr-figure iframe {
  width: 100%;
}
.cid-v2mt670P9o .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mt670P9o .mbr-text,
.cid-v2mt670P9o .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mt751QIU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mt751QIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mt751QIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mt751QIU .video-wrapper iframe {
  width: 100%;
}
.cid-v2mt751QIU .mbr-section-title,
.cid-v2mt751QIU .mbr-section-subtitle,
.cid-v2mt751QIU .mbr-text {
  text-align: center;
}
.cid-v2mt7ygHqg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2mt7ygHqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mt7ygHqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mt7ygHqg .video-wrapper iframe {
  width: 100%;
}
.cid-v2mt7ygHqg .mbr-section-title,
.cid-v2mt7ygHqg .mbr-section-subtitle,
.cid-v2mt7ygHqg .mbr-text {
  text-align: center;
}
.cid-v2mt8nWjhh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sqTPjwLz {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sqTPjwLz img,
.cid-v2sqTPjwLz .item-img {
  width: 100%;
}
.cid-v2sqTPjwLz .item:focus,
.cid-v2sqTPjwLz span:focus {
  outline: none;
}
.cid-v2sqTPjwLz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sqTPjwLz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sqTPjwLz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sqTPjwLz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sqTPjwLz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sqTPjwLz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sqTPjwLz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sqTPjwLz .mbr-section-title {
  color: #ffffff;
}
.cid-v2sqTPjwLz .mbr-text,
.cid-v2sqTPjwLz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqTPjwLz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqTPjwLz .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sqTPjwLz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2srtXZUkl {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2srtXZUkl img,
.cid-v2srtXZUkl .item-img {
  width: 100%;
}
.cid-v2srtXZUkl .item:focus,
.cid-v2srtXZUkl span:focus {
  outline: none;
}
.cid-v2srtXZUkl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2srtXZUkl .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2srtXZUkl .item {
  padding: 0;
  margin: 0;
}
.cid-v2srtXZUkl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2srtXZUkl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2srtXZUkl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2srtXZUkl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2srtXZUkl .mbr-section-title {
  color: #232323;
}
.cid-v2srtXZUkl .mbr-text,
.cid-v2srtXZUkl .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2srtXZUkl .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2srtXZUkl .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2srtXZUkl .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sruODJIv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sruODJIv img,
.cid-v2sruODJIv .item-img {
  width: 100%;
}
.cid-v2sruODJIv .item:focus,
.cid-v2sruODJIv span:focus {
  outline: none;
}
.cid-v2sruODJIv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sruODJIv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sruODJIv .item {
  padding: 0;
  margin: 0;
}
.cid-v2sruODJIv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sruODJIv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sruODJIv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sruODJIv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sruODJIv .mbr-section-title {
  color: #ffffff;
}
.cid-v2sruODJIv .mbr-text,
.cid-v2sruODJIv .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sruODJIv .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sruODJIv .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sruODJIv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2srvJDsIw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2srvJDsIw img,
.cid-v2srvJDsIw .item-img {
  width: 100%;
}
.cid-v2srvJDsIw .item:focus,
.cid-v2srvJDsIw span:focus {
  outline: none;
}
.cid-v2srvJDsIw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2srvJDsIw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2srvJDsIw .item {
  padding: 0;
  margin: 0;
}
.cid-v2srvJDsIw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2srvJDsIw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2srvJDsIw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2srvJDsIw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2srvJDsIw .mbr-section-title {
  color: #ffffff;
}
.cid-v2srvJDsIw .mbr-text,
.cid-v2srvJDsIw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2srvJDsIw .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2srvJDsIw .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2srvJDsIw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2srwhdfiB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2srwhdfiB img,
.cid-v2srwhdfiB .item-img {
  width: 100%;
}
.cid-v2srwhdfiB .item:focus,
.cid-v2srwhdfiB span:focus {
  outline: none;
}
.cid-v2srwhdfiB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2srwhdfiB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2srwhdfiB .item {
  padding: 0;
  margin: 0;
}
.cid-v2srwhdfiB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2srwhdfiB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2srwhdfiB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2srwhdfiB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2srwhdfiB .mbr-section-title {
  color: #ffffff;
}
.cid-v2srwhdfiB .mbr-text,
.cid-v2srwhdfiB .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2srwhdfiB .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2srwhdfiB .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2srwhdfiB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mtdIxkde {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2mteRL0vW {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2mteRL0vW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mteRL0vW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mteRL0vW .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2mteRL0vW .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2mteRL0vW .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2mteRL0vW .card {
    margin-bottom: 2rem;
  }
  .cid-v2mteRL0vW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2mtfyP73I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mtfyP73I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mtfyP73I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mtfyP73I .row {
    flex-direction: column-reverse;
  }
  .cid-v2mtfyP73I .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mtfyP73I .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mtfyP73I .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mtfyP73I .media-content,
.cid-v2mtfyP73I .mbr-figure {
  align-self: center;
}
.cid-v2mtfyP73I .mbr-figure iframe {
  width: 100%;
}
.cid-v2mtfyP73I .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mtfyP73I .mbr-text,
.cid-v2mtfyP73I .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mthaJp3T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2mthaJp3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mthaJp3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mthaJp3T .row {
    flex-direction: column-reverse;
  }
  .cid-v2mthaJp3T .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mthaJp3T .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mthaJp3T .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mthaJp3T .media-content,
.cid-v2mthaJp3T .mbr-figure {
  align-self: center;
}
.cid-v2mthaJp3T .mbr-figure iframe {
  width: 100%;
}
.cid-v2mthaJp3T .mbr-section-title {
  color: #232323;
}
.cid-v2mthaJp3T .mbr-text,
.cid-v2mthaJp3T .mbr-section-btn {
  color: #000000;
}
.cid-v2mtj5vVvE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2mtj5vVvE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mtj5vVvE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2mtj5vVvE .container {
    max-width: 1400px;
  }
}
.cid-v2mtj5vVvE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2mtj5vVvE .card-wrapper {
  margin-top: 3rem;
}
.cid-v2mtj5vVvE .row {
  justify-content: center;
}
.cid-v2mtj5vVvE .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2mtj5vVvE .card-title,
.cid-v2mtj5vVvE .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2mtj5vVvE .mbr-section-title {
  color: #ffffff;
}
.cid-v2mtj5vVvE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mtjyKdam {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2mtkDls9x {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mtkDls9x .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2mtkDls9x .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2mtkDls9x .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mtkDls9x .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2mtkDls9x .mbr-section-title {
  color: #ffffff;
}
.cid-v2mtkDls9x .card-title {
  color: #ffffff;
}
.cid-v2mtkDls9x .mbr-text {
  color: #ffffff;
}
.cid-v2mtkDls9x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mtkDls9x .link {
  color: #44c200;
}
.cid-v2mtlaK1pV {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2mtlaK1pV p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2mtlaK1pV .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2mtlaK1pV .collapsed {
  border: none;
}
.cid-v2mtlaK1pV .collapsed span {
  transform: rotate(0deg);
}
.cid-v2mtlaK1pV span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2mtlaK1pV .panel-body {
  padding-top: 0.5rem;
}
.cid-v2mtlaK1pV .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2mtlaK1pV .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2mtlaK1pV .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2mtlaK1pV .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2mtlaK1pV .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2mtlaK1pV .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2mtlaK1pV .panel-text {
  color: #ffffff;
}
.cid-v2mtlaK1pV H4 {
  color: #ffffff;
}
.cid-v2mtlaK1pV H2 {
  color: #ffffff;
}
.cid-v2mtlaK1pV .mbr-section-text {
  color: #ffffff;
}
.cid-v2mtlaK1pV H3 {
  color: #ffffff;
}
.cid-v2mtlDdwjG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2mtlDdwjG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2mtlDdwjG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2mtlDdwjG .row {
    text-align: center;
  }
  .cid-v2mtlDdwjG .social-row {
    justify-content: center;
  }
}
.cid-v2mtlDdwjG .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2mtlDdwjG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mtlDdwjG .list {
    margin-bottom: 0rem;
  }
}
.cid-v2mtlDdwjG .mbr-text {
  color: #fafafa;
}
.cid-v2mtlDdwjG .mbr-iconfont {
  color: black;
}
.cid-v2mtlDdwjG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v29NrYLQBE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29NrYLQBE nav.navbar {
  position: fixed;
}
.cid-v29NrYLQBE .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-v29NrYLQBE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29NrYLQBE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29NrYLQBE .dropdown-item:hover,
.cid-v29NrYLQBE .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v29NrYLQBE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29NrYLQBE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29NrYLQBE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29NrYLQBE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29NrYLQBE .nav-link {
  position: relative;
}
.cid-v29NrYLQBE .container {
  display: flex;
  margin: auto;
}
.cid-v29NrYLQBE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29NrYLQBE .dropdown-menu,
.cid-v29NrYLQBE .navbar.opened {
  background: #353535 !important;
}
.cid-v29NrYLQBE .nav-item:focus,
.cid-v29NrYLQBE .nav-link:focus {
  outline: none;
}
.cid-v29NrYLQBE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29NrYLQBE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29NrYLQBE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29NrYLQBE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29NrYLQBE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29NrYLQBE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29NrYLQBE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v29NrYLQBE .navbar.opened {
  transition: all 0.3s;
}
.cid-v29NrYLQBE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29NrYLQBE .navbar .navbar-logo img {
  width: auto;
}
.cid-v29NrYLQBE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29NrYLQBE .navbar.collapsed {
  justify-content: center;
}
.cid-v29NrYLQBE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29NrYLQBE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29NrYLQBE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29NrYLQBE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29NrYLQBE .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-v29NrYLQBE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29NrYLQBE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29NrYLQBE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29NrYLQBE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29NrYLQBE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29NrYLQBE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29NrYLQBE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29NrYLQBE .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-v29NrYLQBE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29NrYLQBE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29NrYLQBE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29NrYLQBE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29NrYLQBE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29NrYLQBE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29NrYLQBE .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29NrYLQBE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29NrYLQBE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29NrYLQBE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29NrYLQBE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29NrYLQBE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29NrYLQBE .dropdown-item.active,
.cid-v29NrYLQBE .dropdown-item:active {
  background-color: transparent;
}
.cid-v29NrYLQBE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29NrYLQBE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29NrYLQBE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29NrYLQBE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v29NrYLQBE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29NrYLQBE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29NrYLQBE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29NrYLQBE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29NrYLQBE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29NrYLQBE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29NrYLQBE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29NrYLQBE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29NrYLQBE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29NrYLQBE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29NrYLQBE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29NrYLQBE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29NrYLQBE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29NrYLQBE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29NrYLQBE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29NrYLQBE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29NrYLQBE .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-v29NrYLQBE .navbar {
    height: 70px;
  }
  .cid-v29NrYLQBE .navbar.opened {
    height: auto;
  }
  .cid-v29NrYLQBE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2ggTRtma2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2ggTRtma2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ggTRtma2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2ggTRtma2 .row {
    flex-direction: column-reverse;
  }
  .cid-v2ggTRtma2 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2ggTRtma2 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2ggTRtma2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2ggTRtma2 .media-content,
.cid-v2ggTRtma2 .mbr-figure {
  align-self: center;
}
.cid-v2ggTRtma2 .mbr-figure iframe {
  width: 100%;
}
.cid-v2ggTRtma2 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2ggTRtma2 .mbr-text,
.cid-v2ggTRtma2 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2ggW2AFzj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2ggW2AFzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ggW2AFzj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2ggW2AFzj .video-wrapper iframe {
  width: 100%;
}
.cid-v2ggW2AFzj .mbr-section-title,
.cid-v2ggW2AFzj .mbr-section-subtitle,
.cid-v2ggW2AFzj .mbr-text {
  text-align: center;
}
.cid-v2r67gIQfE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2r67gIQfE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2r67gIQfE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2r67gIQfE .video-wrapper iframe {
  width: 100%;
}
.cid-v2r67gIQfE .mbr-section-title,
.cid-v2r67gIQfE .mbr-section-subtitle,
.cid-v2r67gIQfE .mbr-text {
  text-align: center;
}
.cid-v2gms2vsTR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2gms2vsTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gms2vsTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gms2vsTR .video-wrapper iframe {
  width: 100%;
}
.cid-v2gms2vsTR .mbr-section-title,
.cid-v2gms2vsTR .mbr-section-subtitle,
.cid-v2gms2vsTR .mbr-text {
  text-align: center;
}
.cid-v2gmejJc8a {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2stpzmDFT {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2stpzmDFT img,
.cid-v2stpzmDFT .item-img {
  width: 100%;
}
.cid-v2stpzmDFT .item:focus,
.cid-v2stpzmDFT span:focus {
  outline: none;
}
.cid-v2stpzmDFT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stpzmDFT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stpzmDFT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2stpzmDFT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stpzmDFT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2stpzmDFT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2stpzmDFT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stpzmDFT .mbr-section-title {
  color: #ffffff;
}
.cid-v2stpzmDFT .mbr-text,
.cid-v2stpzmDFT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stpzmDFT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stpzmDFT .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stpzmDFT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2stxHDeYs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stxHDeYs img,
.cid-v2stxHDeYs .item-img {
  width: 100%;
}
.cid-v2stxHDeYs .item:focus,
.cid-v2stxHDeYs span:focus {
  outline: none;
}
.cid-v2stxHDeYs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stxHDeYs .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stxHDeYs .item {
  padding: 0;
  margin: 0;
}
.cid-v2stxHDeYs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stxHDeYs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stxHDeYs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stxHDeYs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stxHDeYs .mbr-section-title {
  color: #232323;
}
.cid-v2stxHDeYs .mbr-text,
.cid-v2stxHDeYs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stxHDeYs .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stxHDeYs .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stxHDeYs .mbr-section-subtitle {
  color: #000000;
}
.cid-v2styrPn6r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2styrPn6r img,
.cid-v2styrPn6r .item-img {
  width: 100%;
}
.cid-v2styrPn6r .item:focus,
.cid-v2styrPn6r span:focus {
  outline: none;
}
.cid-v2styrPn6r .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2styrPn6r .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2styrPn6r .item {
  padding: 0;
  margin: 0;
}
.cid-v2styrPn6r .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2styrPn6r .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2styrPn6r .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2styrPn6r .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2styrPn6r .mbr-section-title {
  color: #ffffff;
}
.cid-v2styrPn6r .mbr-text,
.cid-v2styrPn6r .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2styrPn6r .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2styrPn6r .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2styrPn6r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2stz3n8Xi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stz3n8Xi img,
.cid-v2stz3n8Xi .item-img {
  width: 100%;
}
.cid-v2stz3n8Xi .item:focus,
.cid-v2stz3n8Xi span:focus {
  outline: none;
}
.cid-v2stz3n8Xi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stz3n8Xi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stz3n8Xi .item {
  padding: 0;
  margin: 0;
}
.cid-v2stz3n8Xi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stz3n8Xi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stz3n8Xi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stz3n8Xi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stz3n8Xi .mbr-section-title {
  color: #ffffff;
}
.cid-v2stz3n8Xi .mbr-text,
.cid-v2stz3n8Xi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stz3n8Xi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stz3n8Xi .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stz3n8Xi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2stzAPLri {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stzAPLri img,
.cid-v2stzAPLri .item-img {
  width: 100%;
}
.cid-v2stzAPLri .item:focus,
.cid-v2stzAPLri span:focus {
  outline: none;
}
.cid-v2stzAPLri .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stzAPLri .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stzAPLri .item {
  padding: 0;
  margin: 0;
}
.cid-v2stzAPLri .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stzAPLri .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stzAPLri .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stzAPLri .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stzAPLri .mbr-section-title {
  color: #ffffff;
}
.cid-v2stzAPLri .mbr-text,
.cid-v2stzAPLri .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stzAPLri .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stzAPLri .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stzAPLri .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gh2Q6fY7 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gh3l5rdy {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gh3l5rdy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gh3l5rdy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gh3l5rdy .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gh3l5rdy .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gh3l5rdy .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gh3l5rdy .card {
    margin-bottom: 2rem;
  }
  .cid-v2gh3l5rdy .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2gh97pESu {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-v2gh97pESu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gh97pESu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gh97pESu .row {
    flex-direction: column-reverse;
  }
  .cid-v2gh97pESu .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gh97pESu .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gh97pESu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gh97pESu .media-content,
.cid-v2gh97pESu .mbr-figure {
  align-self: center;
}
.cid-v2gh97pESu .mbr-figure iframe {
  width: 100%;
}
.cid-v2gh97pESu .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gh97pESu .mbr-text,
.cid-v2gh97pESu .mbr-section-btn {
  color: #ffffff;
}
.cid-v2ghd4uRAy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2ghd4uRAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ghd4uRAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2ghd4uRAy .row {
    flex-direction: column-reverse;
  }
  .cid-v2ghd4uRAy .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2ghd4uRAy .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2ghd4uRAy .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2ghd4uRAy .media-content,
.cid-v2ghd4uRAy .mbr-figure {
  align-self: center;
}
.cid-v2ghd4uRAy .mbr-figure iframe {
  width: 100%;
}
.cid-v2ghd4uRAy .mbr-section-title {
  color: #232323;
}
.cid-v2ghd4uRAy .mbr-text,
.cid-v2ghd4uRAy .mbr-section-btn {
  color: #000000;
}
.cid-v2ghanBsOW {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2ghanBsOW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ghanBsOW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2ghanBsOW .container {
    max-width: 1400px;
  }
}
.cid-v2ghanBsOW .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2ghanBsOW .card-wrapper {
  margin-top: 3rem;
}
.cid-v2ghanBsOW .row {
  justify-content: center;
}
.cid-v2ghanBsOW .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2ghanBsOW .card-title,
.cid-v2ghanBsOW .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2ghanBsOW .mbr-section-title {
  color: #ffffff;
}
.cid-v2ghanBsOW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2ghb8de9y {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2ghhd7eoD {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #d3d7d9;
}
.cid-v2ghhd7eoD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ghhd7eoD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2ghhd7eoD .container {
    max-width: 1400px;
  }
}
.cid-v2ghhd7eoD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2ghhd7eoD .card-wrapper {
  margin-top: 3rem;
}
.cid-v2ghhd7eoD .row {
  justify-content: center;
}
.cid-v2ghhXByo4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #d3d7d9;
}
.cid-v2stCkrsDL {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2stCkrsDL img,
.cid-v2stCkrsDL .item-img {
  width: 100%;
}
.cid-v2stCkrsDL .item:focus,
.cid-v2stCkrsDL span:focus {
  outline: none;
}
.cid-v2stCkrsDL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stCkrsDL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stCkrsDL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2stCkrsDL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stCkrsDL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2stCkrsDL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2stCkrsDL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stCkrsDL .mbr-section-title {
  color: #ffb18a;
}
.cid-v2stCkrsDL .mbr-text,
.cid-v2stCkrsDL .mbr-section-btn {
  text-align: left;
}
.cid-v2stCkrsDL .item-title {
  text-align: left;
}
.cid-v2stCkrsDL .item-subtitle {
  text-align: left;
}
.cid-v2stCkrsDL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2ghjQMLPY {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2ghjQMLPY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2ghjQMLPY .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2ghjQMLPY .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2ghjQMLPY .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2ghjQMLPY .mbr-section-title {
  color: #ffffff;
}
.cid-v2ghjQMLPY .card-title {
  color: #ffffff;
}
.cid-v2ghjQMLPY .mbr-text {
  color: #ffffff;
}
.cid-v2ghjQMLPY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2ghjQMLPY .link {
  color: #44c200;
}
.cid-v2ghkitCcZ {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2ghkitCcZ p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2ghkitCcZ .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2ghkitCcZ .collapsed {
  border: none;
}
.cid-v2ghkitCcZ .collapsed span {
  transform: rotate(0deg);
}
.cid-v2ghkitCcZ span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2ghkitCcZ .panel-body {
  padding-top: 0.5rem;
}
.cid-v2ghkitCcZ .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2ghkitCcZ .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2ghkitCcZ .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2ghkitCcZ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2ghkitCcZ .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2ghkitCcZ .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2ghkitCcZ .panel-text {
  color: #ffffff;
}
.cid-v2ghkitCcZ H4 {
  color: #ffffff;
}
.cid-v2ghkitCcZ H2 {
  color: #ffffff;
}
.cid-v2ghkitCcZ .mbr-section-text {
  color: #ffffff;
}
.cid-v2ghkitCcZ H3 {
  color: #ffffff;
}
.cid-v2ghkMd9z3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2ghkMd9z3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2ghkMd9z3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2ghkMd9z3 .row {
    text-align: center;
  }
  .cid-v2ghkMd9z3 .social-row {
    justify-content: center;
  }
}
.cid-v2ghkMd9z3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2ghkMd9z3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2ghkMd9z3 .list {
    margin-bottom: 0rem;
  }
}
.cid-v2ghkMd9z3 .mbr-text {
  color: #fafafa;
}
.cid-v2ghkMd9z3 .mbr-iconfont {
  color: black;
}
.cid-v2ghkMd9z3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gllyC3le {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2gllyC3le .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gllyC3le .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gllyC3le .video-wrapper iframe {
  width: 100%;
}
.cid-v2gllyC3le .mbr-section-title,
.cid-v2gllyC3le .mbr-section-subtitle,
.cid-v2gllyC3le .mbr-text {
  text-align: center;
}
.cid-v29OinQtkT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29OinQtkT nav.navbar {
  position: fixed;
}
.cid-v29OinQtkT .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-v29OinQtkT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29OinQtkT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29OinQtkT .dropdown-item:hover,
.cid-v29OinQtkT .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v29OinQtkT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29OinQtkT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29OinQtkT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29OinQtkT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29OinQtkT .nav-link {
  position: relative;
}
.cid-v29OinQtkT .container {
  display: flex;
  margin: auto;
}
.cid-v29OinQtkT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29OinQtkT .dropdown-menu,
.cid-v29OinQtkT .navbar.opened {
  background: #353535 !important;
}
.cid-v29OinQtkT .nav-item:focus,
.cid-v29OinQtkT .nav-link:focus {
  outline: none;
}
.cid-v29OinQtkT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29OinQtkT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29OinQtkT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29OinQtkT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29OinQtkT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29OinQtkT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29OinQtkT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v29OinQtkT .navbar.opened {
  transition: all 0.3s;
}
.cid-v29OinQtkT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29OinQtkT .navbar .navbar-logo img {
  width: auto;
}
.cid-v29OinQtkT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29OinQtkT .navbar.collapsed {
  justify-content: center;
}
.cid-v29OinQtkT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29OinQtkT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29OinQtkT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29OinQtkT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29OinQtkT .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-v29OinQtkT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29OinQtkT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29OinQtkT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29OinQtkT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29OinQtkT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29OinQtkT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29OinQtkT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29OinQtkT .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-v29OinQtkT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29OinQtkT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29OinQtkT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29OinQtkT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29OinQtkT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29OinQtkT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29OinQtkT .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29OinQtkT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29OinQtkT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29OinQtkT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29OinQtkT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29OinQtkT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29OinQtkT .dropdown-item.active,
.cid-v29OinQtkT .dropdown-item:active {
  background-color: transparent;
}
.cid-v29OinQtkT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29OinQtkT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29OinQtkT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29OinQtkT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v29OinQtkT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29OinQtkT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29OinQtkT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29OinQtkT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29OinQtkT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29OinQtkT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29OinQtkT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29OinQtkT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29OinQtkT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29OinQtkT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29OinQtkT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29OinQtkT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29OinQtkT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29OinQtkT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29OinQtkT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29OinQtkT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29OinQtkT .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-v29OinQtkT .navbar {
    height: 70px;
  }
  .cid-v29OinQtkT .navbar.opened {
    height: auto;
  }
  .cid-v29OinQtkT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2gDgc1fmD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gDgc1fmD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDgc1fmD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gDgc1fmD .row {
    flex-direction: column-reverse;
  }
  .cid-v2gDgc1fmD .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gDgc1fmD .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gDgc1fmD .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gDgc1fmD .media-content,
.cid-v2gDgc1fmD .mbr-figure {
  align-self: center;
}
.cid-v2gDgc1fmD .mbr-figure iframe {
  width: 100%;
}
.cid-v2gDgc1fmD .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gDgc1fmD .mbr-text,
.cid-v2gDgc1fmD .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gDi0SEaG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gDi0SEaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDi0SEaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gDi0SEaG .video-wrapper iframe {
  width: 100%;
}
.cid-v2gDi0SEaG .mbr-section-title,
.cid-v2gDi0SEaG .mbr-section-subtitle,
.cid-v2gDi0SEaG .mbr-text {
  text-align: center;
}
.cid-v2gDiyJOMU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2gDiyJOMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDiyJOMU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gDiyJOMU .video-wrapper iframe {
  width: 100%;
}
.cid-v2gDiyJOMU .mbr-section-title,
.cid-v2gDiyJOMU .mbr-section-subtitle,
.cid-v2gDiyJOMU .mbr-text {
  text-align: center;
}
.cid-v2gDqbH6wH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2suO2ojTC {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2suO2ojTC img,
.cid-v2suO2ojTC .item-img {
  width: 100%;
}
.cid-v2suO2ojTC .item:focus,
.cid-v2suO2ojTC span:focus {
  outline: none;
}
.cid-v2suO2ojTC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2suO2ojTC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2suO2ojTC .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2suO2ojTC .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2suO2ojTC .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2suO2ojTC .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2suO2ojTC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2suO2ojTC .mbr-section-title {
  color: #ffffff;
}
.cid-v2suO2ojTC .mbr-text,
.cid-v2suO2ojTC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2suO2ojTC .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2suO2ojTC .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2suO2ojTC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sv3hgo7J {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sv3hgo7J img,
.cid-v2sv3hgo7J .item-img {
  width: 100%;
}
.cid-v2sv3hgo7J .item:focus,
.cid-v2sv3hgo7J span:focus {
  outline: none;
}
.cid-v2sv3hgo7J .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sv3hgo7J .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sv3hgo7J .item {
  padding: 0;
  margin: 0;
}
.cid-v2sv3hgo7J .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sv3hgo7J .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sv3hgo7J .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sv3hgo7J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sv3hgo7J .mbr-section-title {
  color: #232323;
}
.cid-v2sv3hgo7J .mbr-text,
.cid-v2sv3hgo7J .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv3hgo7J .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv3hgo7J .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sv3hgo7J .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sv4a52iQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sv4a52iQ img,
.cid-v2sv4a52iQ .item-img {
  width: 100%;
}
.cid-v2sv4a52iQ .item:focus,
.cid-v2sv4a52iQ span:focus {
  outline: none;
}
.cid-v2sv4a52iQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sv4a52iQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sv4a52iQ .item {
  padding: 0;
  margin: 0;
}
.cid-v2sv4a52iQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sv4a52iQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sv4a52iQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sv4a52iQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sv4a52iQ .mbr-section-title {
  color: #ffffff;
}
.cid-v2sv4a52iQ .mbr-text,
.cid-v2sv4a52iQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv4a52iQ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv4a52iQ .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sv4a52iQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sv4KahGa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sv4KahGa img,
.cid-v2sv4KahGa .item-img {
  width: 100%;
}
.cid-v2sv4KahGa .item:focus,
.cid-v2sv4KahGa span:focus {
  outline: none;
}
.cid-v2sv4KahGa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sv4KahGa .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sv4KahGa .item {
  padding: 0;
  margin: 0;
}
.cid-v2sv4KahGa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sv4KahGa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sv4KahGa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sv4KahGa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sv4KahGa .mbr-section-title {
  color: #ffffff;
}
.cid-v2sv4KahGa .mbr-text,
.cid-v2sv4KahGa .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv4KahGa .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv4KahGa .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sv4KahGa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sv5i8Wzd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sv5i8Wzd img,
.cid-v2sv5i8Wzd .item-img {
  width: 100%;
}
.cid-v2sv5i8Wzd .item:focus,
.cid-v2sv5i8Wzd span:focus {
  outline: none;
}
.cid-v2sv5i8Wzd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sv5i8Wzd .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sv5i8Wzd .item {
  padding: 0;
  margin: 0;
}
.cid-v2sv5i8Wzd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sv5i8Wzd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sv5i8Wzd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sv5i8Wzd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sv5i8Wzd .mbr-section-title {
  color: #ffffff;
}
.cid-v2sv5i8Wzd .mbr-text,
.cid-v2sv5i8Wzd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv5i8Wzd .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sv5i8Wzd .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sv5i8Wzd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gDuXW157 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gDw7AhNM {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gDw7AhNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDw7AhNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gDw7AhNM .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gDw7AhNM .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gDw7AhNM .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gDw7AhNM .card {
    margin-bottom: 2rem;
  }
  .cid-v2gDw7AhNM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2rcOHhSoy {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rcOHhSoy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rcOHhSoy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rcOHhSoy .mbr-text {
  color: #767676;
}
.cid-v2rcOHhSoy .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rcOHhSoy .title .num {
  width: 100%;
  display: block;
}
.cid-v2rcOHhSoy .title .card-title {
  z-index: 1;
}
.cid-v2rcOHhSoy .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rcOHhSoy * {
    text-align: center !important;
  }
  .cid-v2rcOHhSoy .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rcOHhSoy .card-title,
.cid-v2rcOHhSoy .card-img {
  color: #ffffff;
}
.cid-v2rcOHhSoy .mbr-section-title,
.cid-v2rcOHhSoy .card-box {
  color: #ffffff;
}
.cid-v2rcOHhSoy .mbr-text,
.cid-v2rcOHhSoy .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gDwBtLFm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gDwBtLFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDwBtLFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gDwBtLFm .row {
    flex-direction: column-reverse;
  }
  .cid-v2gDwBtLFm .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gDwBtLFm .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gDwBtLFm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gDwBtLFm .media-content,
.cid-v2gDwBtLFm .mbr-figure {
  align-self: center;
}
.cid-v2gDwBtLFm .mbr-figure iframe {
  width: 100%;
}
.cid-v2gDwBtLFm .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gDwBtLFm .mbr-text,
.cid-v2gDwBtLFm .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gDxwKXzN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2gDxwKXzN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDxwKXzN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gDxwKXzN .row {
    flex-direction: column-reverse;
  }
  .cid-v2gDxwKXzN .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gDxwKXzN .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gDxwKXzN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gDxwKXzN .media-content,
.cid-v2gDxwKXzN .mbr-figure {
  align-self: center;
}
.cid-v2gDxwKXzN .mbr-figure iframe {
  width: 100%;
}
.cid-v2gDxwKXzN .mbr-section-title {
  color: #232323;
}
.cid-v2gDxwKXzN .mbr-text,
.cid-v2gDxwKXzN .mbr-section-btn {
  color: #000000;
}
.cid-v2gDyPX2wQ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gDyPX2wQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gDyPX2wQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gDyPX2wQ .container {
    max-width: 1400px;
  }
}
.cid-v2gDyPX2wQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gDyPX2wQ .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gDyPX2wQ .row {
  justify-content: center;
}
.cid-v2gDyPX2wQ .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gDyPX2wQ .card-title,
.cid-v2gDyPX2wQ .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gDyPX2wQ .mbr-section-title {
  color: #ffffff;
}
.cid-v2gDyPX2wQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gDziq9km {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2rcYRkywB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2rcYRkywB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rcYRkywB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rcYRkywB .mbr-section-title {
  color: #000000;
}
.cid-v2suLEIjTe {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2suLEIjTe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2suLEIjTe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2suLEIjTe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2suLEIjTe .row {
  flex-direction: row-reverse;
}
.cid-v2suLEIjTe img {
  width: 100%;
}
.cid-v2rd0VNlxj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2suK5baQI {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2suK5baQI img,
.cid-v2suK5baQI .item-img {
  width: 100%;
}
.cid-v2suK5baQI .item:focus,
.cid-v2suK5baQI span:focus {
  outline: none;
}
.cid-v2suK5baQI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2suK5baQI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2suK5baQI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2suK5baQI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2suK5baQI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2suK5baQI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2suK5baQI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2suK5baQI .mbr-section-title {
  color: #ffb18a;
}
.cid-v2suK5baQI .mbr-text,
.cid-v2suK5baQI .mbr-section-btn {
  text-align: left;
}
.cid-v2suK5baQI .item-title {
  text-align: left;
}
.cid-v2suK5baQI .item-subtitle {
  text-align: left;
}
.cid-v2suK5baQI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gDB1bB4M {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gDB1bB4M .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gDB1bB4M .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gDB1bB4M .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gDB1bB4M .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gDB1bB4M .mbr-section-title {
  color: #ffffff;
}
.cid-v2gDB1bB4M .card-title {
  color: #ffffff;
}
.cid-v2gDB1bB4M .mbr-text {
  color: #ffffff;
}
.cid-v2gDB1bB4M .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gDB1bB4M .link {
  color: #44c200;
}
.cid-v2gDBqRwPi {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gDBqRwPi p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gDBqRwPi .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gDBqRwPi .collapsed {
  border: none;
}
.cid-v2gDBqRwPi .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gDBqRwPi span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gDBqRwPi .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gDBqRwPi .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gDBqRwPi .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gDBqRwPi .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gDBqRwPi .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gDBqRwPi .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gDBqRwPi .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gDBqRwPi .panel-text {
  color: #ffffff;
}
.cid-v2gDBqRwPi H4 {
  color: #ffffff;
}
.cid-v2gDBqRwPi H2 {
  color: #ffffff;
}
.cid-v2gDBqRwPi .mbr-section-text {
  color: #ffffff;
}
.cid-v2gDBqRwPi H3 {
  color: #ffffff;
}
.cid-v2gDBQEl2g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gDBQEl2g .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gDBQEl2g .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gDBQEl2g .row {
    text-align: center;
  }
  .cid-v2gDBQEl2g .social-row {
    justify-content: center;
  }
}
.cid-v2gDBQEl2g .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gDBQEl2g .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gDBQEl2g .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gDBQEl2g .mbr-text {
  color: #fafafa;
}
.cid-v2gDBQEl2g .mbr-iconfont {
  color: black;
}
.cid-v2gDBQEl2g .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2a46hkBJ1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2a46hkBJ1 nav.navbar {
  position: fixed;
}
.cid-v2a46hkBJ1 .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-v2a46hkBJ1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2a46hkBJ1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2a46hkBJ1 .dropdown-item:hover,
.cid-v2a46hkBJ1 .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2a46hkBJ1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2a46hkBJ1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2a46hkBJ1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2a46hkBJ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2a46hkBJ1 .nav-link {
  position: relative;
}
.cid-v2a46hkBJ1 .container {
  display: flex;
  margin: auto;
}
.cid-v2a46hkBJ1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2a46hkBJ1 .dropdown-menu,
.cid-v2a46hkBJ1 .navbar.opened {
  background: #353535 !important;
}
.cid-v2a46hkBJ1 .nav-item:focus,
.cid-v2a46hkBJ1 .nav-link:focus {
  outline: none;
}
.cid-v2a46hkBJ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2a46hkBJ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2a46hkBJ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2a46hkBJ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2a46hkBJ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2a46hkBJ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2a46hkBJ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2a46hkBJ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2a46hkBJ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2a46hkBJ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2a46hkBJ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2a46hkBJ1 .navbar.collapsed {
  justify-content: center;
}
.cid-v2a46hkBJ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2a46hkBJ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2a46hkBJ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2a46hkBJ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2a46hkBJ1 .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-v2a46hkBJ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2a46hkBJ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2a46hkBJ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2a46hkBJ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2a46hkBJ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2a46hkBJ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2a46hkBJ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2a46hkBJ1 .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-v2a46hkBJ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2a46hkBJ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2a46hkBJ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2a46hkBJ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2a46hkBJ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2a46hkBJ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2a46hkBJ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2a46hkBJ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2a46hkBJ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2a46hkBJ1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2a46hkBJ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2a46hkBJ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2a46hkBJ1 .dropdown-item.active,
.cid-v2a46hkBJ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2a46hkBJ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2a46hkBJ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2a46hkBJ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2a46hkBJ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2a46hkBJ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2a46hkBJ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2a46hkBJ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2a46hkBJ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2a46hkBJ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2a46hkBJ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2a46hkBJ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2a46hkBJ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2a46hkBJ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2a46hkBJ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2a46hkBJ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2a46hkBJ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2a46hkBJ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2a46hkBJ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2a46hkBJ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2a46hkBJ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2a46hkBJ1 .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-v2a46hkBJ1 .navbar {
    height: 70px;
  }
  .cid-v2a46hkBJ1 .navbar.opened {
    height: auto;
  }
  .cid-v2a46hkBJ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2lu1bN7Xl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2lu1bN7Xl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lu1bN7Xl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2lu1bN7Xl .row {
    flex-direction: column-reverse;
  }
  .cid-v2lu1bN7Xl .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2lu1bN7Xl .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2lu1bN7Xl .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2lu1bN7Xl .media-content,
.cid-v2lu1bN7Xl .mbr-figure {
  align-self: center;
}
.cid-v2lu1bN7Xl .mbr-figure iframe {
  width: 100%;
}
.cid-v2lu1bN7Xl .mbr-section-title {
  color: #ffb18a;
}
.cid-v2lu1bN7Xl .mbr-text,
.cid-v2lu1bN7Xl .mbr-section-btn {
  color: #ffffff;
}
.cid-v2lu2dGrH5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2lu2dGrH5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lu2dGrH5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2lu2dGrH5 .video-wrapper iframe {
  width: 100%;
}
.cid-v2lu2dGrH5 .mbr-section-title,
.cid-v2lu2dGrH5 .mbr-section-subtitle,
.cid-v2lu2dGrH5 .mbr-text {
  text-align: center;
}
.cid-v2lYusJUve {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2lYusJUve .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lYusJUve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2lYusJUve .video-wrapper iframe {
  width: 100%;
}
.cid-v2lYusJUve .mbr-section-title,
.cid-v2lYusJUve .mbr-section-subtitle,
.cid-v2lYusJUve .mbr-text {
  text-align: center;
}
.cid-v2lu2Ajngo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2lu2Ajngo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lu2Ajngo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2lu2Ajngo .video-wrapper iframe {
  width: 100%;
}
.cid-v2lu2Ajngo .mbr-section-title,
.cid-v2lu2Ajngo .mbr-section-subtitle,
.cid-v2lu2Ajngo .mbr-text {
  text-align: center;
}
.cid-v2lZ0JmGZM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2lZ0JmGZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lZ0JmGZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2lZ0JmGZM .video-wrapper iframe {
  width: 100%;
}
.cid-v2lZ0JmGZM .mbr-section-title,
.cid-v2lZ0JmGZM .mbr-section-subtitle,
.cid-v2lZ0JmGZM .mbr-text {
  text-align: center;
}
.cid-v2m1QC3RxI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2m1QC3RxI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m1QC3RxI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m1QC3RxI .video-wrapper iframe {
  width: 100%;
}
.cid-v2m1QC3RxI .mbr-section-title,
.cid-v2m1QC3RxI .mbr-section-subtitle,
.cid-v2m1QC3RxI .mbr-text {
  text-align: center;
}
.cid-v2lu3gHEtQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sECzjfth {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sECzjfth img,
.cid-v2sECzjfth .item-img {
  width: 100%;
}
.cid-v2sECzjfth .item:focus,
.cid-v2sECzjfth span:focus {
  outline: none;
}
.cid-v2sECzjfth .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sECzjfth .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sECzjfth .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sECzjfth .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sECzjfth .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sECzjfth .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sECzjfth .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sECzjfth .mbr-section-title {
  color: #ffffff;
}
.cid-v2sECzjfth .mbr-text,
.cid-v2sECzjfth .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sECzjfth .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sECzjfth .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sECzjfth .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sEG3WvOO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sEG3WvOO img,
.cid-v2sEG3WvOO .item-img {
  width: 100%;
}
.cid-v2sEG3WvOO .item:focus,
.cid-v2sEG3WvOO span:focus {
  outline: none;
}
.cid-v2sEG3WvOO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sEG3WvOO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sEG3WvOO .item {
  padding: 0;
  margin: 0;
}
.cid-v2sEG3WvOO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sEG3WvOO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEG3WvOO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sEG3WvOO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sEG3WvOO .mbr-section-title {
  color: #232323;
}
.cid-v2sEG3WvOO .mbr-text,
.cid-v2sEG3WvOO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEG3WvOO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEG3WvOO .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sEG3WvOO .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sEHVqeJn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sEHVqeJn img,
.cid-v2sEHVqeJn .item-img {
  width: 100%;
}
.cid-v2sEHVqeJn .item:focus,
.cid-v2sEHVqeJn span:focus {
  outline: none;
}
.cid-v2sEHVqeJn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sEHVqeJn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sEHVqeJn .item {
  padding: 0;
  margin: 0;
}
.cid-v2sEHVqeJn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sEHVqeJn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEHVqeJn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sEHVqeJn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sEHVqeJn .mbr-section-title {
  color: #ffffff;
}
.cid-v2sEHVqeJn .mbr-text,
.cid-v2sEHVqeJn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEHVqeJn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEHVqeJn .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sEHVqeJn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sEIAFAI4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sEIAFAI4 img,
.cid-v2sEIAFAI4 .item-img {
  width: 100%;
}
.cid-v2sEIAFAI4 .item:focus,
.cid-v2sEIAFAI4 span:focus {
  outline: none;
}
.cid-v2sEIAFAI4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sEIAFAI4 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sEIAFAI4 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sEIAFAI4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sEIAFAI4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEIAFAI4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sEIAFAI4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sEIAFAI4 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sEIAFAI4 .mbr-text,
.cid-v2sEIAFAI4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEIAFAI4 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEIAFAI4 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sEIAFAI4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sEJsfZmT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sEJsfZmT img,
.cid-v2sEJsfZmT .item-img {
  width: 100%;
}
.cid-v2sEJsfZmT .item:focus,
.cid-v2sEJsfZmT span:focus {
  outline: none;
}
.cid-v2sEJsfZmT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sEJsfZmT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sEJsfZmT .item {
  padding: 0;
  margin: 0;
}
.cid-v2sEJsfZmT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sEJsfZmT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEJsfZmT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sEJsfZmT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sEJsfZmT .mbr-section-title {
  color: #ffffff;
}
.cid-v2sEJsfZmT .mbr-text,
.cid-v2sEJsfZmT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEJsfZmT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEJsfZmT .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sEJsfZmT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2lu81i28r {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2lu94gAhY {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2lu94gAhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lu94gAhY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2lu94gAhY .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2lu94gAhY .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2lu94gAhY .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2lu94gAhY .card {
    margin-bottom: 2rem;
  }
  .cid-v2lu94gAhY .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sEzUEM3l {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sEzUEM3l .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sEzUEM3l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sEzUEM3l .mbr-section-title {
  color: #000000;
}
.cid-v2sEAwq5jt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sEAwq5jt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sEAwq5jt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sEAwq5jt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sEAwq5jt .row {
  flex-direction: row-reverse;
}
.cid-v2sEAwq5jt img {
  width: 100%;
}
.cid-v2sEATJpFr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2lu9ILS8b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2lu9ILS8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lu9ILS8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2lu9ILS8b .row {
    flex-direction: column-reverse;
  }
  .cid-v2lu9ILS8b .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2lu9ILS8b .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2lu9ILS8b .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2lu9ILS8b .media-content,
.cid-v2lu9ILS8b .mbr-figure {
  align-self: center;
}
.cid-v2lu9ILS8b .mbr-figure iframe {
  width: 100%;
}
.cid-v2lu9ILS8b .mbr-section-title {
  color: #ffb18a;
}
.cid-v2lu9ILS8b .mbr-text,
.cid-v2lu9ILS8b .mbr-section-btn {
  color: #ffffff;
}
.cid-v2luavHp6H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2luavHp6H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2luavHp6H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2luavHp6H .row {
    flex-direction: column-reverse;
  }
  .cid-v2luavHp6H .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2luavHp6H .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2luavHp6H .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2luavHp6H .media-content,
.cid-v2luavHp6H .mbr-figure {
  align-self: center;
}
.cid-v2luavHp6H .mbr-figure iframe {
  width: 100%;
}
.cid-v2luavHp6H .mbr-section-title {
  color: #232323;
}
.cid-v2luavHp6H .mbr-text,
.cid-v2luavHp6H .mbr-section-btn {
  color: #000000;
}
.cid-v2rpFY7fO0 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rpFY7fO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rpFY7fO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rpFY7fO0 .mbr-text {
  color: #767676;
}
.cid-v2rpFY7fO0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rpFY7fO0 .title .num {
  width: 100%;
  display: block;
}
.cid-v2rpFY7fO0 .title .card-title {
  z-index: 1;
}
.cid-v2rpFY7fO0 .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rpFY7fO0 * {
    text-align: center !important;
  }
  .cid-v2rpFY7fO0 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rpFY7fO0 .card-title,
.cid-v2rpFY7fO0 .card-img {
  color: #ffffff;
}
.cid-v2rpFY7fO0 .mbr-section-title,
.cid-v2rpFY7fO0 .card-box {
  color: #ffffff;
}
.cid-v2rpFY7fO0 .mbr-text,
.cid-v2rpFY7fO0 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2lublgwwo {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2lublgwwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2lublgwwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2lublgwwo .container {
    max-width: 1400px;
  }
}
.cid-v2lublgwwo .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2lublgwwo .card-wrapper {
  margin-top: 3rem;
}
.cid-v2lublgwwo .row {
  justify-content: center;
}
.cid-v2lublgwwo .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2lublgwwo .card-title,
.cid-v2lublgwwo .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2lublgwwo .mbr-section-title {
  color: #ffffff;
}
.cid-v2lublgwwo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2luc3eItO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sExMILls {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sExMILls img,
.cid-v2sExMILls .item-img {
  width: 100%;
}
.cid-v2sExMILls .item:focus,
.cid-v2sExMILls span:focus {
  outline: none;
}
.cid-v2sExMILls .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sExMILls .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sExMILls .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sExMILls .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sExMILls .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sExMILls .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sExMILls .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sExMILls .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sExMILls .mbr-text,
.cid-v2sExMILls .mbr-section-btn {
  text-align: left;
}
.cid-v2sExMILls .item-title {
  text-align: left;
}
.cid-v2sExMILls .item-subtitle {
  text-align: left;
}
.cid-v2sExMILls .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2lueyitxX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2lueyitxX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2lueyitxX .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2lueyitxX .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2lueyitxX .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2lueyitxX .mbr-section-title {
  color: #ffffff;
}
.cid-v2lueyitxX .card-title {
  color: #ffffff;
}
.cid-v2lueyitxX .mbr-text {
  color: #ffffff;
}
.cid-v2lueyitxX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2lueyitxX .link {
  color: #44c200;
}
.cid-v2qEgxeUM4 {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2qEgxeUM4 p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2qEgxeUM4 .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2qEgxeUM4 .collapsed {
  border: none;
}
.cid-v2qEgxeUM4 .collapsed span {
  transform: rotate(0deg);
}
.cid-v2qEgxeUM4 span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2qEgxeUM4 .panel-body {
  padding-top: 0.5rem;
}
.cid-v2qEgxeUM4 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2qEgxeUM4 .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2qEgxeUM4 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2qEgxeUM4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2qEgxeUM4 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2qEgxeUM4 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2qEgxeUM4 .panel-text {
  color: #ffffff;
}
.cid-v2qEgxeUM4 H4 {
  color: #ffffff;
}
.cid-v2qEgxeUM4 H2 {
  color: #ffffff;
}
.cid-v2qEgxeUM4 .mbr-section-text {
  color: #ffffff;
}
.cid-v2qEgxeUM4 H3 {
  color: #ffffff;
}
.cid-v2luf0E34n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2luf0E34n .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2luf0E34n .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2luf0E34n .row {
    text-align: center;
  }
  .cid-v2luf0E34n .social-row {
    justify-content: center;
  }
}
.cid-v2luf0E34n .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2luf0E34n .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2luf0E34n .list {
    margin-bottom: 0rem;
  }
}
.cid-v2luf0E34n .mbr-text {
  color: #fafafa;
}
.cid-v2luf0E34n .mbr-iconfont {
  color: black;
}
.cid-v2luf0E34n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2ayDEqEyv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2ayDEqEyv nav.navbar {
  position: fixed;
}
.cid-v2ayDEqEyv .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-v2ayDEqEyv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2ayDEqEyv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2ayDEqEyv .dropdown-item:hover,
.cid-v2ayDEqEyv .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2ayDEqEyv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2ayDEqEyv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2ayDEqEyv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2ayDEqEyv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2ayDEqEyv .nav-link {
  position: relative;
}
.cid-v2ayDEqEyv .container {
  display: flex;
  margin: auto;
}
.cid-v2ayDEqEyv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2ayDEqEyv .dropdown-menu,
.cid-v2ayDEqEyv .navbar.opened {
  background: #353535 !important;
}
.cid-v2ayDEqEyv .nav-item:focus,
.cid-v2ayDEqEyv .nav-link:focus {
  outline: none;
}
.cid-v2ayDEqEyv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2ayDEqEyv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2ayDEqEyv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2ayDEqEyv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2ayDEqEyv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2ayDEqEyv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2ayDEqEyv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2ayDEqEyv .navbar.opened {
  transition: all 0.3s;
}
.cid-v2ayDEqEyv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2ayDEqEyv .navbar .navbar-logo img {
  width: auto;
}
.cid-v2ayDEqEyv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2ayDEqEyv .navbar.collapsed {
  justify-content: center;
}
.cid-v2ayDEqEyv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2ayDEqEyv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2ayDEqEyv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2ayDEqEyv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2ayDEqEyv .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-v2ayDEqEyv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2ayDEqEyv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2ayDEqEyv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2ayDEqEyv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2ayDEqEyv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2ayDEqEyv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2ayDEqEyv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2ayDEqEyv .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-v2ayDEqEyv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2ayDEqEyv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2ayDEqEyv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2ayDEqEyv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2ayDEqEyv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2ayDEqEyv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2ayDEqEyv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2ayDEqEyv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2ayDEqEyv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2ayDEqEyv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2ayDEqEyv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2ayDEqEyv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2ayDEqEyv .dropdown-item.active,
.cid-v2ayDEqEyv .dropdown-item:active {
  background-color: transparent;
}
.cid-v2ayDEqEyv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2ayDEqEyv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2ayDEqEyv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2ayDEqEyv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2ayDEqEyv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2ayDEqEyv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2ayDEqEyv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2ayDEqEyv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2ayDEqEyv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2ayDEqEyv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2ayDEqEyv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2ayDEqEyv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2ayDEqEyv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2ayDEqEyv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2ayDEqEyv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2ayDEqEyv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2ayDEqEyv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2ayDEqEyv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2ayDEqEyv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2ayDEqEyv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2ayDEqEyv .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-v2ayDEqEyv .navbar {
    height: 70px;
  }
  .cid-v2ayDEqEyv .navbar.opened {
    height: auto;
  }
  .cid-v2ayDEqEyv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2m7AZY2PD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2m7AZY2PD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7AZY2PD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2m7AZY2PD .row {
    flex-direction: column-reverse;
  }
  .cid-v2m7AZY2PD .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2m7AZY2PD .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2m7AZY2PD .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2m7AZY2PD .media-content,
.cid-v2m7AZY2PD .mbr-figure {
  align-self: center;
}
.cid-v2m7AZY2PD .mbr-figure iframe {
  width: 100%;
}
.cid-v2m7AZY2PD .mbr-section-title {
  color: #ffb18a;
}
.cid-v2m7AZY2PD .mbr-text,
.cid-v2m7AZY2PD .mbr-section-btn {
  color: #ffffff;
}
.cid-v2m7jCQwZU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2m7jCQwZU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7jCQwZU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m7jCQwZU .video-wrapper iframe {
  width: 100%;
}
.cid-v2m7jCQwZU .mbr-section-title,
.cid-v2m7jCQwZU .mbr-section-subtitle,
.cid-v2m7jCQwZU .mbr-text {
  text-align: center;
}
.cid-v2m7kmCQUh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2m7kmCQUh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7kmCQUh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m7kmCQUh .video-wrapper iframe {
  width: 100%;
}
.cid-v2m7kmCQUh .mbr-section-title,
.cid-v2m7kmCQUh .mbr-section-subtitle,
.cid-v2m7kmCQUh .mbr-text {
  text-align: center;
}
.cid-v2m8yjjFGQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2m8yjjFGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m8yjjFGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m8yjjFGQ .video-wrapper iframe {
  width: 100%;
}
.cid-v2m8yjjFGQ .mbr-section-title,
.cid-v2m8yjjFGQ .mbr-section-subtitle,
.cid-v2m8yjjFGQ .mbr-text {
  text-align: center;
}
.cid-v2mgar9pSs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2mgar9pSs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mgar9pSs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mgar9pSs .video-wrapper iframe {
  width: 100%;
}
.cid-v2mgar9pSs .mbr-section-title,
.cid-v2mgar9pSs .mbr-section-subtitle,
.cid-v2mgar9pSs .mbr-text {
  text-align: center;
}
.cid-v2m7ltWVUb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sFGYqXEp {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sFGYqXEp img,
.cid-v2sFGYqXEp .item-img {
  width: 100%;
}
.cid-v2sFGYqXEp .item:focus,
.cid-v2sFGYqXEp span:focus {
  outline: none;
}
.cid-v2sFGYqXEp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFGYqXEp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFGYqXEp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sFGYqXEp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFGYqXEp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sFGYqXEp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sFGYqXEp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFGYqXEp .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFGYqXEp .mbr-text,
.cid-v2sFGYqXEp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFGYqXEp .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFGYqXEp .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFGYqXEp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sFI2rjxN {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFI2rjxN img,
.cid-v2sFI2rjxN .item-img {
  width: 100%;
}
.cid-v2sFI2rjxN .item:focus,
.cid-v2sFI2rjxN span:focus {
  outline: none;
}
.cid-v2sFI2rjxN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFI2rjxN .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFI2rjxN .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFI2rjxN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFI2rjxN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFI2rjxN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFI2rjxN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFI2rjxN .mbr-section-title {
  color: #232323;
}
.cid-v2sFI2rjxN .mbr-text,
.cid-v2sFI2rjxN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFI2rjxN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFI2rjxN .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFI2rjxN .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sFK6QyM0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFK6QyM0 img,
.cid-v2sFK6QyM0 .item-img {
  width: 100%;
}
.cid-v2sFK6QyM0 .item:focus,
.cid-v2sFK6QyM0 span:focus {
  outline: none;
}
.cid-v2sFK6QyM0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFK6QyM0 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFK6QyM0 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFK6QyM0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFK6QyM0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFK6QyM0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFK6QyM0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFK6QyM0 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFK6QyM0 .mbr-text,
.cid-v2sFK6QyM0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFK6QyM0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFK6QyM0 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFK6QyM0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sFJsreIz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFJsreIz img,
.cid-v2sFJsreIz .item-img {
  width: 100%;
}
.cid-v2sFJsreIz .item:focus,
.cid-v2sFJsreIz span:focus {
  outline: none;
}
.cid-v2sFJsreIz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFJsreIz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFJsreIz .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFJsreIz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFJsreIz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFJsreIz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFJsreIz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFJsreIz .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFJsreIz .mbr-text,
.cid-v2sFJsreIz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFJsreIz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFJsreIz .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFJsreIz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sFL2HNzj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFL2HNzj img,
.cid-v2sFL2HNzj .item-img {
  width: 100%;
}
.cid-v2sFL2HNzj .item:focus,
.cid-v2sFL2HNzj span:focus {
  outline: none;
}
.cid-v2sFL2HNzj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFL2HNzj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFL2HNzj .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFL2HNzj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFL2HNzj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFL2HNzj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFL2HNzj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFL2HNzj .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFL2HNzj .mbr-text,
.cid-v2sFL2HNzj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFL2HNzj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFL2HNzj .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFL2HNzj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m7e7WuHN {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2m7zeWmPl {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2m7zeWmPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7zeWmPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m7zeWmPl .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2m7zeWmPl .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2m7zeWmPl .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2m7zeWmPl .card {
    margin-bottom: 2rem;
  }
  .cid-v2m7zeWmPl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sFRvAZN8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFRvAZN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sFRvAZN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sFRvAZN8 .mbr-section-title {
  color: #000000;
}
.cid-v2sFQIfQwe {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sFQIfQwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sFQIfQwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sFQIfQwe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sFQIfQwe .row {
  flex-direction: row-reverse;
}
.cid-v2sFQIfQwe img {
  width: 100%;
}
.cid-v2sFS2T4pi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2mediOwIM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mediOwIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mediOwIM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mediOwIM .row {
    flex-direction: column-reverse;
  }
  .cid-v2mediOwIM .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mediOwIM .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mediOwIM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mediOwIM .media-content,
.cid-v2mediOwIM .mbr-figure {
  align-self: center;
}
.cid-v2mediOwIM .mbr-figure iframe {
  width: 100%;
}
.cid-v2mediOwIM .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mediOwIM .mbr-text,
.cid-v2mediOwIM .mbr-section-btn {
  color: #ffffff;
}
.cid-v2m7gmSbwq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2m7gmSbwq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7gmSbwq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2m7gmSbwq .row {
    flex-direction: column-reverse;
  }
  .cid-v2m7gmSbwq .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2m7gmSbwq .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2m7gmSbwq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2m7gmSbwq .media-content,
.cid-v2m7gmSbwq .mbr-figure {
  align-self: center;
}
.cid-v2m7gmSbwq .mbr-figure iframe {
  width: 100%;
}
.cid-v2m7gmSbwq .mbr-section-title {
  color: #232323;
}
.cid-v2m7gmSbwq .mbr-text,
.cid-v2m7gmSbwq .mbr-section-btn {
  color: #000000;
}
.cid-v2m7s0v43T {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2m7s0v43T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7s0v43T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m7s0v43T .mbr-text {
  color: #767676;
}
.cid-v2m7s0v43T .mbr-section-subtitle {
  color: #767676;
}
.cid-v2m7s0v43T .title .num {
  width: 100%;
  display: block;
}
.cid-v2m7s0v43T .title .card-title {
  z-index: 1;
}
.cid-v2m7s0v43T .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2m7s0v43T * {
    text-align: center !important;
  }
  .cid-v2m7s0v43T .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2m7s0v43T .card-title,
.cid-v2m7s0v43T .card-img {
  color: #ffffff;
}
.cid-v2m7s0v43T .mbr-section-title,
.cid-v2m7s0v43T .card-box {
  color: #ffffff;
}
.cid-v2m7s0v43T .mbr-text,
.cid-v2m7s0v43T .mbr-section-btn {
  color: #ffffff;
}
.cid-v2m7phpSId {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2m7phpSId .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m7phpSId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2m7phpSId .container {
    max-width: 1400px;
  }
}
.cid-v2m7phpSId .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2m7phpSId .card-wrapper {
  margin-top: 3rem;
}
.cid-v2m7phpSId .row {
  justify-content: center;
}
.cid-v2m7phpSId .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2m7phpSId .card-title,
.cid-v2m7phpSId .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2m7phpSId .mbr-section-title {
  color: #ffffff;
}
.cid-v2m7phpSId .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m7pQaZt1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sFMnsxmH {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sFMnsxmH img,
.cid-v2sFMnsxmH .item-img {
  width: 100%;
}
.cid-v2sFMnsxmH .item:focus,
.cid-v2sFMnsxmH span:focus {
  outline: none;
}
.cid-v2sFMnsxmH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFMnsxmH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFMnsxmH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sFMnsxmH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFMnsxmH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sFMnsxmH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sFMnsxmH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFMnsxmH .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sFMnsxmH .mbr-text,
.cid-v2sFMnsxmH .mbr-section-btn {
  text-align: left;
}
.cid-v2sFMnsxmH .item-title {
  text-align: left;
}
.cid-v2sFMnsxmH .item-subtitle {
  text-align: left;
}
.cid-v2sFMnsxmH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m7ug1RE1 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2m7ug1RE1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2m7ug1RE1 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2m7ug1RE1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2m7ug1RE1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2m7ug1RE1 .mbr-section-title {
  color: #ffffff;
}
.cid-v2m7ug1RE1 .card-title {
  color: #ffffff;
}
.cid-v2m7ug1RE1 .mbr-text {
  color: #ffffff;
}
.cid-v2m7ug1RE1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m7ug1RE1 .link {
  color: #44c200;
}
.cid-v2m7v9DMMt {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2m7v9DMMt p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2m7v9DMMt .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2m7v9DMMt .collapsed {
  border: none;
}
.cid-v2m7v9DMMt .collapsed span {
  transform: rotate(0deg);
}
.cid-v2m7v9DMMt span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2m7v9DMMt .panel-body {
  padding-top: 0.5rem;
}
.cid-v2m7v9DMMt .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2m7v9DMMt .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2m7v9DMMt .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2m7v9DMMt .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2m7v9DMMt .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2m7v9DMMt .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2m7v9DMMt .panel-text {
  color: #ffffff;
}
.cid-v2m7v9DMMt H4 {
  color: #ffffff;
}
.cid-v2m7v9DMMt H2 {
  color: #ffffff;
}
.cid-v2m7v9DMMt .mbr-section-text {
  color: #ffffff;
}
.cid-v2m7v9DMMt H3 {
  color: #ffffff;
}
.cid-v2m7vxl2BC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2m7vxl2BC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2m7vxl2BC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2m7vxl2BC .row {
    text-align: center;
  }
  .cid-v2m7vxl2BC .social-row {
    justify-content: center;
  }
}
.cid-v2m7vxl2BC .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2m7vxl2BC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2m7vxl2BC .list {
    margin-bottom: 0rem;
  }
}
.cid-v2m7vxl2BC .mbr-text {
  color: #fafafa;
}
.cid-v2m7vxl2BC .mbr-iconfont {
  color: black;
}
.cid-v2m7vxl2BC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2avN0o7qx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2avN0o7qx nav.navbar {
  position: fixed;
}
.cid-v2avN0o7qx .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-v2avN0o7qx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2avN0o7qx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2avN0o7qx .dropdown-item:hover,
.cid-v2avN0o7qx .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2avN0o7qx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2avN0o7qx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2avN0o7qx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2avN0o7qx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2avN0o7qx .nav-link {
  position: relative;
}
.cid-v2avN0o7qx .container {
  display: flex;
  margin: auto;
}
.cid-v2avN0o7qx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2avN0o7qx .dropdown-menu,
.cid-v2avN0o7qx .navbar.opened {
  background: #353535 !important;
}
.cid-v2avN0o7qx .nav-item:focus,
.cid-v2avN0o7qx .nav-link:focus {
  outline: none;
}
.cid-v2avN0o7qx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2avN0o7qx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2avN0o7qx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2avN0o7qx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2avN0o7qx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2avN0o7qx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2avN0o7qx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2avN0o7qx .navbar.opened {
  transition: all 0.3s;
}
.cid-v2avN0o7qx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2avN0o7qx .navbar .navbar-logo img {
  width: auto;
}
.cid-v2avN0o7qx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2avN0o7qx .navbar.collapsed {
  justify-content: center;
}
.cid-v2avN0o7qx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2avN0o7qx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2avN0o7qx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2avN0o7qx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2avN0o7qx .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-v2avN0o7qx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2avN0o7qx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2avN0o7qx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2avN0o7qx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2avN0o7qx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2avN0o7qx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2avN0o7qx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2avN0o7qx .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-v2avN0o7qx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2avN0o7qx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2avN0o7qx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2avN0o7qx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2avN0o7qx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2avN0o7qx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2avN0o7qx .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2avN0o7qx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2avN0o7qx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2avN0o7qx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2avN0o7qx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2avN0o7qx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2avN0o7qx .dropdown-item.active,
.cid-v2avN0o7qx .dropdown-item:active {
  background-color: transparent;
}
.cid-v2avN0o7qx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2avN0o7qx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2avN0o7qx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2avN0o7qx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2avN0o7qx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2avN0o7qx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2avN0o7qx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2avN0o7qx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2avN0o7qx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2avN0o7qx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2avN0o7qx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2avN0o7qx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2avN0o7qx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2avN0o7qx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2avN0o7qx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2avN0o7qx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2avN0o7qx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2avN0o7qx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2avN0o7qx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2avN0o7qx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2avN0o7qx .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-v2avN0o7qx .navbar {
    height: 70px;
  }
  .cid-v2avN0o7qx .navbar.opened {
    height: auto;
  }
  .cid-v2avN0o7qx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2awpHqXti {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2awpHqXti .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2awpHqXti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2awpHqXti .row {
    flex-direction: column-reverse;
  }
  .cid-v2awpHqXti .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2awpHqXti .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2awpHqXti .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2awpHqXti .media-content,
.cid-v2awpHqXti .mbr-figure {
  align-self: center;
}
.cid-v2awpHqXti .mbr-figure iframe {
  width: 100%;
}
.cid-v2awpHqXti .mbr-section-title {
  color: #ffb18a;
}
.cid-v2awpHqXti .mbr-text,
.cid-v2awpHqXti .mbr-section-btn {
  color: #ffffff;
}
.cid-v2fwGJwj1Z {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2fwGJwj1Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fwGJwj1Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fwGJwj1Z .video-wrapper iframe {
  width: 100%;
}
.cid-v2fwGJwj1Z .mbr-section-title,
.cid-v2fwGJwj1Z .mbr-section-subtitle,
.cid-v2fwGJwj1Z .mbr-text {
  text-align: center;
}
.cid-v2gvP481Io {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gvP481Io .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gvP481Io .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gvP481Io .video-wrapper iframe {
  width: 100%;
}
.cid-v2gvP481Io .mbr-section-title,
.cid-v2gvP481Io .mbr-section-subtitle,
.cid-v2gvP481Io .mbr-text {
  text-align: center;
}
.cid-v2fvRO4Ira {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2ssR4gYjF {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2ssR4gYjF img,
.cid-v2ssR4gYjF .item-img {
  width: 100%;
}
.cid-v2ssR4gYjF .item:focus,
.cid-v2ssR4gYjF span:focus {
  outline: none;
}
.cid-v2ssR4gYjF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2ssR4gYjF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2ssR4gYjF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2ssR4gYjF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ssR4gYjF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2ssR4gYjF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2ssR4gYjF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2ssR4gYjF .mbr-section-title {
  color: #ffffff;
}
.cid-v2ssR4gYjF .mbr-text,
.cid-v2ssR4gYjF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2ssR4gYjF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2ssR4gYjF .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2ssR4gYjF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2st3qCX2Q {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2st3qCX2Q img,
.cid-v2st3qCX2Q .item-img {
  width: 100%;
}
.cid-v2st3qCX2Q .item:focus,
.cid-v2st3qCX2Q span:focus {
  outline: none;
}
.cid-v2st3qCX2Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2st3qCX2Q .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2st3qCX2Q .item {
  padding: 0;
  margin: 0;
}
.cid-v2st3qCX2Q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2st3qCX2Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2st3qCX2Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2st3qCX2Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2st3qCX2Q .mbr-section-title {
  color: #232323;
}
.cid-v2st3qCX2Q .mbr-text,
.cid-v2st3qCX2Q .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2st3qCX2Q .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2st3qCX2Q .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2st3qCX2Q .mbr-section-subtitle {
  color: #000000;
}
.cid-v2st4GKyuE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2st4GKyuE img,
.cid-v2st4GKyuE .item-img {
  width: 100%;
}
.cid-v2st4GKyuE .item:focus,
.cid-v2st4GKyuE span:focus {
  outline: none;
}
.cid-v2st4GKyuE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2st4GKyuE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2st4GKyuE .item {
  padding: 0;
  margin: 0;
}
.cid-v2st4GKyuE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2st4GKyuE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2st4GKyuE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2st4GKyuE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2st4GKyuE .mbr-section-title {
  color: #ffffff;
}
.cid-v2st4GKyuE .mbr-text,
.cid-v2st4GKyuE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2st4GKyuE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2st4GKyuE .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2st4GKyuE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2st5dlrkO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2st5dlrkO img,
.cid-v2st5dlrkO .item-img {
  width: 100%;
}
.cid-v2st5dlrkO .item:focus,
.cid-v2st5dlrkO span:focus {
  outline: none;
}
.cid-v2st5dlrkO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2st5dlrkO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2st5dlrkO .item {
  padding: 0;
  margin: 0;
}
.cid-v2st5dlrkO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2st5dlrkO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2st5dlrkO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2st5dlrkO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2st5dlrkO .mbr-section-title {
  color: #ffffff;
}
.cid-v2st5dlrkO .mbr-text,
.cid-v2st5dlrkO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2st5dlrkO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2st5dlrkO .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2st5dlrkO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2st5W0GLW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2st5W0GLW img,
.cid-v2st5W0GLW .item-img {
  width: 100%;
}
.cid-v2st5W0GLW .item:focus,
.cid-v2st5W0GLW span:focus {
  outline: none;
}
.cid-v2st5W0GLW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2st5W0GLW .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2st5W0GLW .item {
  padding: 0;
  margin: 0;
}
.cid-v2st5W0GLW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2st5W0GLW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2st5W0GLW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2st5W0GLW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2st5W0GLW .mbr-section-title {
  color: #ffffff;
}
.cid-v2st5W0GLW .mbr-text,
.cid-v2st5W0GLW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2st5W0GLW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2st5W0GLW .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2st5W0GLW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gcOckZcj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gcPsCXnk {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gcPsCXnk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gcPsCXnk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gcPsCXnk .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gcPsCXnk .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gcPsCXnk .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gcPsCXnk .card {
    margin-bottom: 2rem;
  }
  .cid-v2gcPsCXnk .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2gcQtsagx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gcQtsagx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gcQtsagx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gcQtsagx .row {
    flex-direction: column-reverse;
  }
  .cid-v2gcQtsagx .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gcQtsagx .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gcQtsagx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gcQtsagx .media-content,
.cid-v2gcQtsagx .mbr-figure {
  align-self: center;
}
.cid-v2gcQtsagx .mbr-figure iframe {
  width: 100%;
}
.cid-v2gcQtsagx .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gcQtsagx .mbr-text,
.cid-v2gcQtsagx .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gcYgsGx9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2gcYgsGx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gcYgsGx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gcYgsGx9 .row {
    flex-direction: column-reverse;
  }
  .cid-v2gcYgsGx9 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gcYgsGx9 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gcYgsGx9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gcYgsGx9 .media-content,
.cid-v2gcYgsGx9 .mbr-figure {
  align-self: center;
}
.cid-v2gcYgsGx9 .mbr-figure iframe {
  width: 100%;
}
.cid-v2gcYgsGx9 .mbr-section-title {
  color: #232323;
}
.cid-v2gcYgsGx9 .mbr-text,
.cid-v2gcYgsGx9 .mbr-section-btn {
  color: #000000;
}
.cid-v2gcTMsrNU {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gcTMsrNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gcTMsrNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gcTMsrNU .container {
    max-width: 1400px;
  }
}
.cid-v2gcTMsrNU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gcTMsrNU .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gcTMsrNU .row {
  justify-content: center;
}
.cid-v2gcTMsrNU .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gcTMsrNU .card-title,
.cid-v2gcTMsrNU .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gcTMsrNU .mbr-section-title {
  color: #ffffff;
}
.cid-v2gcTMsrNU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gcVCVVT6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2st7HDXlJ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2st7HDXlJ img,
.cid-v2st7HDXlJ .item-img {
  width: 100%;
}
.cid-v2st7HDXlJ .item:focus,
.cid-v2st7HDXlJ span:focus {
  outline: none;
}
.cid-v2st7HDXlJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2st7HDXlJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2st7HDXlJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2st7HDXlJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2st7HDXlJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2st7HDXlJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2st7HDXlJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2st7HDXlJ .mbr-section-title {
  color: #ffb18a;
}
.cid-v2st7HDXlJ .mbr-text,
.cid-v2st7HDXlJ .mbr-section-btn {
  text-align: left;
}
.cid-v2st7HDXlJ .item-title {
  text-align: left;
}
.cid-v2st7HDXlJ .item-subtitle {
  text-align: left;
}
.cid-v2st7HDXlJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gd4uN6db {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gd4uN6db .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gd4uN6db .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gd4uN6db .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gd4uN6db .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gd4uN6db .mbr-section-title {
  color: #ffffff;
}
.cid-v2gd4uN6db .card-title {
  color: #ffffff;
}
.cid-v2gd4uN6db .mbr-text {
  color: #ffffff;
}
.cid-v2gd4uN6db .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gd4uN6db .link {
  color: #44c200;
}
.cid-v2gd4V6SO8 {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gd4V6SO8 p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gd4V6SO8 .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gd4V6SO8 .collapsed {
  border: none;
}
.cid-v2gd4V6SO8 .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gd4V6SO8 span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gd4V6SO8 .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gd4V6SO8 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gd4V6SO8 .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gd4V6SO8 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gd4V6SO8 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gd4V6SO8 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gd4V6SO8 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gd4V6SO8 .panel-text {
  color: #ffffff;
}
.cid-v2gd4V6SO8 H4 {
  color: #ffffff;
}
.cid-v2gd4V6SO8 H2 {
  color: #ffffff;
}
.cid-v2gd4V6SO8 .mbr-section-text {
  color: #ffffff;
}
.cid-v2gd4V6SO8 H3 {
  color: #ffffff;
}
.cid-v2gd5mzGLH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gd5mzGLH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gd5mzGLH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gd5mzGLH .row {
    text-align: center;
  }
  .cid-v2gd5mzGLH .social-row {
    justify-content: center;
  }
}
.cid-v2gd5mzGLH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gd5mzGLH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gd5mzGLH .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gd5mzGLH .mbr-text {
  color: #fafafa;
}
.cid-v2gd5mzGLH .mbr-iconfont {
  color: black;
}
.cid-v2gd5mzGLH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2azsvzsHU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2azsvzsHU nav.navbar {
  position: fixed;
}
.cid-v2azsvzsHU .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-v2azsvzsHU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2azsvzsHU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2azsvzsHU .dropdown-item:hover,
.cid-v2azsvzsHU .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2azsvzsHU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2azsvzsHU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2azsvzsHU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2azsvzsHU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2azsvzsHU .nav-link {
  position: relative;
}
.cid-v2azsvzsHU .container {
  display: flex;
  margin: auto;
}
.cid-v2azsvzsHU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2azsvzsHU .dropdown-menu,
.cid-v2azsvzsHU .navbar.opened {
  background: #353535 !important;
}
.cid-v2azsvzsHU .nav-item:focus,
.cid-v2azsvzsHU .nav-link:focus {
  outline: none;
}
.cid-v2azsvzsHU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2azsvzsHU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2azsvzsHU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2azsvzsHU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2azsvzsHU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2azsvzsHU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2azsvzsHU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2azsvzsHU .navbar.opened {
  transition: all 0.3s;
}
.cid-v2azsvzsHU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2azsvzsHU .navbar .navbar-logo img {
  width: auto;
}
.cid-v2azsvzsHU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2azsvzsHU .navbar.collapsed {
  justify-content: center;
}
.cid-v2azsvzsHU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2azsvzsHU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2azsvzsHU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2azsvzsHU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2azsvzsHU .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-v2azsvzsHU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2azsvzsHU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2azsvzsHU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2azsvzsHU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2azsvzsHU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2azsvzsHU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2azsvzsHU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2azsvzsHU .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-v2azsvzsHU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2azsvzsHU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2azsvzsHU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2azsvzsHU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2azsvzsHU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2azsvzsHU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2azsvzsHU .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2azsvzsHU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2azsvzsHU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2azsvzsHU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2azsvzsHU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2azsvzsHU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2azsvzsHU .dropdown-item.active,
.cid-v2azsvzsHU .dropdown-item:active {
  background-color: transparent;
}
.cid-v2azsvzsHU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2azsvzsHU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2azsvzsHU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2azsvzsHU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2azsvzsHU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2azsvzsHU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2azsvzsHU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2azsvzsHU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2azsvzsHU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2azsvzsHU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2azsvzsHU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2azsvzsHU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2azsvzsHU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2azsvzsHU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2azsvzsHU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2azsvzsHU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2azsvzsHU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2azsvzsHU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2azsvzsHU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2azsvzsHU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2azsvzsHU .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-v2azsvzsHU .navbar {
    height: 70px;
  }
  .cid-v2azsvzsHU .navbar.opened {
    height: auto;
  }
  .cid-v2azsvzsHU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2grn0gToA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2grn0gToA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2grn0gToA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2grn0gToA .row {
    flex-direction: column-reverse;
  }
  .cid-v2grn0gToA .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2grn0gToA .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2grn0gToA .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2grn0gToA .media-content,
.cid-v2grn0gToA .mbr-figure {
  align-self: center;
}
.cid-v2grn0gToA .mbr-figure iframe {
  width: 100%;
}
.cid-v2grn0gToA .mbr-section-title {
  color: #ffb18a;
}
.cid-v2grn0gToA .mbr-text,
.cid-v2grn0gToA .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gskDDaGB {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2gskDDaGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gskDDaGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gskDDaGB .video-wrapper iframe {
  width: 100%;
}
.cid-v2gskDDaGB .mbr-section-title,
.cid-v2gskDDaGB .mbr-section-subtitle,
.cid-v2gskDDaGB .mbr-text {
  text-align: center;
}
.cid-v2gQarDV9d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2gQarDV9d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gQarDV9d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gQarDV9d .video-wrapper iframe {
  width: 100%;
}
.cid-v2gQarDV9d .mbr-section-title,
.cid-v2gQarDV9d .mbr-section-subtitle,
.cid-v2gQarDV9d .mbr-text {
  text-align: center;
}
.cid-v2gyDsOrjv {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2stOnkVSB {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2stOnkVSB img,
.cid-v2stOnkVSB .item-img {
  width: 100%;
}
.cid-v2stOnkVSB .item:focus,
.cid-v2stOnkVSB span:focus {
  outline: none;
}
.cid-v2stOnkVSB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stOnkVSB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stOnkVSB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2stOnkVSB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stOnkVSB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2stOnkVSB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2stOnkVSB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stOnkVSB .mbr-section-title {
  color: #ffffff;
}
.cid-v2stOnkVSB .mbr-text,
.cid-v2stOnkVSB .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stOnkVSB .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stOnkVSB .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stOnkVSB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2stPp9DCW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stPp9DCW img,
.cid-v2stPp9DCW .item-img {
  width: 100%;
}
.cid-v2stPp9DCW .item:focus,
.cid-v2stPp9DCW span:focus {
  outline: none;
}
.cid-v2stPp9DCW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stPp9DCW .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stPp9DCW .item {
  padding: 0;
  margin: 0;
}
.cid-v2stPp9DCW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stPp9DCW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stPp9DCW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stPp9DCW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stPp9DCW .mbr-section-title {
  color: #232323;
}
.cid-v2stPp9DCW .mbr-text,
.cid-v2stPp9DCW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stPp9DCW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stPp9DCW .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stPp9DCW .mbr-section-subtitle {
  color: #000000;
}
.cid-v2stQD2WT1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stQD2WT1 img,
.cid-v2stQD2WT1 .item-img {
  width: 100%;
}
.cid-v2stQD2WT1 .item:focus,
.cid-v2stQD2WT1 span:focus {
  outline: none;
}
.cid-v2stQD2WT1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stQD2WT1 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stQD2WT1 .item {
  padding: 0;
  margin: 0;
}
.cid-v2stQD2WT1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stQD2WT1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stQD2WT1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stQD2WT1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stQD2WT1 .mbr-section-title {
  color: #ffffff;
}
.cid-v2stQD2WT1 .mbr-text,
.cid-v2stQD2WT1 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stQD2WT1 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stQD2WT1 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stQD2WT1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2stRsnbiY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stRsnbiY img,
.cid-v2stRsnbiY .item-img {
  width: 100%;
}
.cid-v2stRsnbiY .item:focus,
.cid-v2stRsnbiY span:focus {
  outline: none;
}
.cid-v2stRsnbiY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stRsnbiY .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stRsnbiY .item {
  padding: 0;
  margin: 0;
}
.cid-v2stRsnbiY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stRsnbiY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stRsnbiY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stRsnbiY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stRsnbiY .mbr-section-title {
  color: #ffffff;
}
.cid-v2stRsnbiY .mbr-text,
.cid-v2stRsnbiY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stRsnbiY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stRsnbiY .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stRsnbiY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2stS3OnF5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2stS3OnF5 img,
.cid-v2stS3OnF5 .item-img {
  width: 100%;
}
.cid-v2stS3OnF5 .item:focus,
.cid-v2stS3OnF5 span:focus {
  outline: none;
}
.cid-v2stS3OnF5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stS3OnF5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2stS3OnF5 .item {
  padding: 0;
  margin: 0;
}
.cid-v2stS3OnF5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stS3OnF5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stS3OnF5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2stS3OnF5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stS3OnF5 .mbr-section-title {
  color: #ffffff;
}
.cid-v2stS3OnF5 .mbr-text,
.cid-v2stS3OnF5 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2stS3OnF5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2stS3OnF5 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2stS3OnF5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gyOWN0bQ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gyPyFRUl {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gyPyFRUl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gyPyFRUl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gyPyFRUl .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gyPyFRUl .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gyPyFRUl .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gyPyFRUl .card {
    margin-bottom: 2rem;
  }
  .cid-v2gyPyFRUl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2gyQqu51F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gyQqu51F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gyQqu51F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gyQqu51F .row {
    flex-direction: column-reverse;
  }
  .cid-v2gyQqu51F .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gyQqu51F .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gyQqu51F .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gyQqu51F .media-content,
.cid-v2gyQqu51F .mbr-figure {
  align-self: center;
}
.cid-v2gyQqu51F .mbr-figure iframe {
  width: 100%;
}
.cid-v2gyQqu51F .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gyQqu51F .mbr-text,
.cid-v2gyQqu51F .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gyQZEAYZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2gyQZEAYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gyQZEAYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gyQZEAYZ .row {
    flex-direction: column-reverse;
  }
  .cid-v2gyQZEAYZ .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gyQZEAYZ .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gyQZEAYZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gyQZEAYZ .media-content,
.cid-v2gyQZEAYZ .mbr-figure {
  align-self: center;
}
.cid-v2gyQZEAYZ .mbr-figure iframe {
  width: 100%;
}
.cid-v2gyQZEAYZ .mbr-section-title {
  color: #232323;
}
.cid-v2gyQZEAYZ .mbr-text,
.cid-v2gyQZEAYZ .mbr-section-btn {
  color: #000000;
}
.cid-v2gySNKiC8 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gySNKiC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gySNKiC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gySNKiC8 .container {
    max-width: 1400px;
  }
}
.cid-v2gySNKiC8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gySNKiC8 .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gySNKiC8 .row {
  justify-content: center;
}
.cid-v2gySNKiC8 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gySNKiC8 .card-title,
.cid-v2gySNKiC8 .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gySNKiC8 .mbr-section-title {
  color: #ffffff;
}
.cid-v2gySNKiC8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gyTKvuKv {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2stMCwAD6 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2stMCwAD6 img,
.cid-v2stMCwAD6 .item-img {
  width: 100%;
}
.cid-v2stMCwAD6 .item:focus,
.cid-v2stMCwAD6 span:focus {
  outline: none;
}
.cid-v2stMCwAD6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2stMCwAD6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2stMCwAD6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2stMCwAD6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2stMCwAD6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2stMCwAD6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2stMCwAD6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2stMCwAD6 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2stMCwAD6 .mbr-text,
.cid-v2stMCwAD6 .mbr-section-btn {
  text-align: left;
}
.cid-v2stMCwAD6 .item-title {
  text-align: left;
}
.cid-v2stMCwAD6 .item-subtitle {
  text-align: left;
}
.cid-v2stMCwAD6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gyVN3Vx6 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gyVN3Vx6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gyVN3Vx6 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gyVN3Vx6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gyVN3Vx6 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gyVN3Vx6 .mbr-section-title {
  color: #ffffff;
}
.cid-v2gyVN3Vx6 .card-title {
  color: #ffffff;
}
.cid-v2gyVN3Vx6 .mbr-text {
  color: #ffffff;
}
.cid-v2gyVN3Vx6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gyVN3Vx6 .link {
  color: #44c200;
}
.cid-v2gyWnuJJS {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gyWnuJJS p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gyWnuJJS .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gyWnuJJS .collapsed {
  border: none;
}
.cid-v2gyWnuJJS .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gyWnuJJS span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gyWnuJJS .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gyWnuJJS .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gyWnuJJS .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gyWnuJJS .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gyWnuJJS .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gyWnuJJS .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gyWnuJJS .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gyWnuJJS .panel-text {
  color: #ffffff;
}
.cid-v2gyWnuJJS H4 {
  color: #ffffff;
}
.cid-v2gyWnuJJS H2 {
  color: #ffffff;
}
.cid-v2gyWnuJJS .mbr-section-text {
  color: #ffffff;
}
.cid-v2gyWnuJJS H3 {
  color: #ffffff;
}
.cid-v2gyXqceib {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gyXqceib .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gyXqceib .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gyXqceib .row {
    text-align: center;
  }
  .cid-v2gyXqceib .social-row {
    justify-content: center;
  }
}
.cid-v2gyXqceib .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gyXqceib .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gyXqceib .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gyXqceib .mbr-text {
  color: #fafafa;
}
.cid-v2gyXqceib .mbr-iconfont {
  color: black;
}
.cid-v2gyXqceib .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aAetUVyi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aAetUVyi nav.navbar {
  position: fixed;
}
.cid-v2aAetUVyi .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-v2aAetUVyi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aAetUVyi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aAetUVyi .dropdown-item:hover,
.cid-v2aAetUVyi .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aAetUVyi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aAetUVyi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aAetUVyi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aAetUVyi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aAetUVyi .nav-link {
  position: relative;
}
.cid-v2aAetUVyi .container {
  display: flex;
  margin: auto;
}
.cid-v2aAetUVyi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aAetUVyi .dropdown-menu,
.cid-v2aAetUVyi .navbar.opened {
  background: #353535 !important;
}
.cid-v2aAetUVyi .nav-item:focus,
.cid-v2aAetUVyi .nav-link:focus {
  outline: none;
}
.cid-v2aAetUVyi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aAetUVyi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aAetUVyi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aAetUVyi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aAetUVyi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aAetUVyi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aAetUVyi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aAetUVyi .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aAetUVyi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aAetUVyi .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aAetUVyi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aAetUVyi .navbar.collapsed {
  justify-content: center;
}
.cid-v2aAetUVyi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aAetUVyi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aAetUVyi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aAetUVyi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aAetUVyi .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-v2aAetUVyi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aAetUVyi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aAetUVyi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aAetUVyi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aAetUVyi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aAetUVyi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aAetUVyi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aAetUVyi .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-v2aAetUVyi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aAetUVyi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aAetUVyi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aAetUVyi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aAetUVyi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aAetUVyi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aAetUVyi .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aAetUVyi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aAetUVyi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aAetUVyi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aAetUVyi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aAetUVyi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aAetUVyi .dropdown-item.active,
.cid-v2aAetUVyi .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aAetUVyi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aAetUVyi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aAetUVyi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aAetUVyi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aAetUVyi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aAetUVyi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aAetUVyi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aAetUVyi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aAetUVyi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aAetUVyi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aAetUVyi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aAetUVyi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aAetUVyi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aAetUVyi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aAetUVyi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aAetUVyi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aAetUVyi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aAetUVyi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aAetUVyi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aAetUVyi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aAetUVyi .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-v2aAetUVyi .navbar {
    height: 70px;
  }
  .cid-v2aAetUVyi .navbar.opened {
    height: auto;
  }
  .cid-v2aAetUVyi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2gzscva6h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gzscva6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gzscva6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gzscva6h .row {
    flex-direction: column-reverse;
  }
  .cid-v2gzscva6h .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gzscva6h .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gzscva6h .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gzscva6h .media-content,
.cid-v2gzscva6h .mbr-figure {
  align-self: center;
}
.cid-v2gzscva6h .mbr-figure iframe {
  width: 100%;
}
.cid-v2gzscva6h .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gzscva6h .mbr-text,
.cid-v2gzscva6h .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gztBMmbj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gztBMmbj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gztBMmbj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gztBMmbj .video-wrapper iframe {
  width: 100%;
}
.cid-v2gztBMmbj .mbr-section-title,
.cid-v2gztBMmbj .mbr-section-subtitle,
.cid-v2gztBMmbj .mbr-text {
  text-align: center;
}
.cid-v2gzuduXrU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gzuduXrU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gzuduXrU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gzuduXrU .video-wrapper iframe {
  width: 100%;
}
.cid-v2gzuduXrU .mbr-section-title,
.cid-v2gzuduXrU .mbr-section-subtitle,
.cid-v2gzuduXrU .mbr-text {
  text-align: center;
}
.cid-v2gBuzCQmP {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2suhKbeqE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2suhKbeqE img,
.cid-v2suhKbeqE .item-img {
  width: 100%;
}
.cid-v2suhKbeqE .item:focus,
.cid-v2suhKbeqE span:focus {
  outline: none;
}
.cid-v2suhKbeqE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2suhKbeqE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2suhKbeqE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2suhKbeqE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2suhKbeqE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2suhKbeqE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2suhKbeqE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2suhKbeqE .mbr-section-title {
  color: #ffffff;
}
.cid-v2suhKbeqE .mbr-text,
.cid-v2suhKbeqE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2suhKbeqE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2suhKbeqE .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2suhKbeqE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sukNClsz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sukNClsz img,
.cid-v2sukNClsz .item-img {
  width: 100%;
}
.cid-v2sukNClsz .item:focus,
.cid-v2sukNClsz span:focus {
  outline: none;
}
.cid-v2sukNClsz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sukNClsz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sukNClsz .item {
  padding: 0;
  margin: 0;
}
.cid-v2sukNClsz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sukNClsz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sukNClsz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sukNClsz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sukNClsz .mbr-section-title {
  color: #232323;
}
.cid-v2sukNClsz .mbr-text,
.cid-v2sukNClsz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sukNClsz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sukNClsz .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sukNClsz .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sum6jjbu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sum6jjbu img,
.cid-v2sum6jjbu .item-img {
  width: 100%;
}
.cid-v2sum6jjbu .item:focus,
.cid-v2sum6jjbu span:focus {
  outline: none;
}
.cid-v2sum6jjbu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sum6jjbu .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sum6jjbu .item {
  padding: 0;
  margin: 0;
}
.cid-v2sum6jjbu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sum6jjbu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sum6jjbu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sum6jjbu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sum6jjbu .mbr-section-title {
  color: #ffffff;
}
.cid-v2sum6jjbu .mbr-text,
.cid-v2sum6jjbu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sum6jjbu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sum6jjbu .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sum6jjbu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sumGIYDJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sumGIYDJ img,
.cid-v2sumGIYDJ .item-img {
  width: 100%;
}
.cid-v2sumGIYDJ .item:focus,
.cid-v2sumGIYDJ span:focus {
  outline: none;
}
.cid-v2sumGIYDJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sumGIYDJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sumGIYDJ .item {
  padding: 0;
  margin: 0;
}
.cid-v2sumGIYDJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sumGIYDJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sumGIYDJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sumGIYDJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sumGIYDJ .mbr-section-title {
  color: #ffffff;
}
.cid-v2sumGIYDJ .mbr-text,
.cid-v2sumGIYDJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sumGIYDJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sumGIYDJ .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sumGIYDJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sunbKxGA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sunbKxGA img,
.cid-v2sunbKxGA .item-img {
  width: 100%;
}
.cid-v2sunbKxGA .item:focus,
.cid-v2sunbKxGA span:focus {
  outline: none;
}
.cid-v2sunbKxGA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sunbKxGA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sunbKxGA .item {
  padding: 0;
  margin: 0;
}
.cid-v2sunbKxGA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sunbKxGA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sunbKxGA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sunbKxGA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sunbKxGA .mbr-section-title {
  color: #ffffff;
}
.cid-v2sunbKxGA .mbr-text,
.cid-v2sunbKxGA .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sunbKxGA .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sunbKxGA .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sunbKxGA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gBHCa3I6 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gBLmBuRz {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gBLmBuRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gBLmBuRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gBLmBuRz .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gBLmBuRz .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gBLmBuRz .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gBLmBuRz .card {
    margin-bottom: 2rem;
  }
  .cid-v2gBLmBuRz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2gBM8kNz9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gBM8kNz9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gBM8kNz9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gBM8kNz9 .row {
    flex-direction: column-reverse;
  }
  .cid-v2gBM8kNz9 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gBM8kNz9 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gBM8kNz9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gBM8kNz9 .media-content,
.cid-v2gBM8kNz9 .mbr-figure {
  align-self: center;
}
.cid-v2gBM8kNz9 .mbr-figure iframe {
  width: 100%;
}
.cid-v2gBM8kNz9 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gBM8kNz9 .mbr-text,
.cid-v2gBM8kNz9 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gBOTQkSo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2gBOTQkSo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gBOTQkSo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gBOTQkSo .row {
    flex-direction: column-reverse;
  }
  .cid-v2gBOTQkSo .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gBOTQkSo .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gBOTQkSo .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gBOTQkSo .media-content,
.cid-v2gBOTQkSo .mbr-figure {
  align-self: center;
}
.cid-v2gBOTQkSo .mbr-figure iframe {
  width: 100%;
}
.cid-v2gBOTQkSo .mbr-section-title {
  color: #232323;
}
.cid-v2gBOTQkSo .mbr-text,
.cid-v2gBOTQkSo .mbr-section-btn {
  color: #000000;
}
.cid-v2gBYdJ2j9 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gBYdJ2j9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gBYdJ2j9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gBYdJ2j9 .container {
    max-width: 1400px;
  }
}
.cid-v2gBYdJ2j9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gBYdJ2j9 .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gBYdJ2j9 .row {
  justify-content: center;
}
.cid-v2gBYdJ2j9 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gBYdJ2j9 .card-title,
.cid-v2gBYdJ2j9 .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gBYdJ2j9 .mbr-section-title {
  color: #ffffff;
}
.cid-v2gBYdJ2j9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gBYUkI17 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2suj5l6V0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2suj5l6V0 img,
.cid-v2suj5l6V0 .item-img {
  width: 100%;
}
.cid-v2suj5l6V0 .item:focus,
.cid-v2suj5l6V0 span:focus {
  outline: none;
}
.cid-v2suj5l6V0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2suj5l6V0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2suj5l6V0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2suj5l6V0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2suj5l6V0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2suj5l6V0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2suj5l6V0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2suj5l6V0 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2suj5l6V0 .mbr-text,
.cid-v2suj5l6V0 .mbr-section-btn {
  text-align: left;
}
.cid-v2suj5l6V0 .item-title {
  text-align: left;
}
.cid-v2suj5l6V0 .item-subtitle {
  text-align: left;
}
.cid-v2suj5l6V0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gBQMwHQF {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gBQMwHQF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gBQMwHQF .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gBQMwHQF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gBQMwHQF .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gBQMwHQF .mbr-section-title {
  color: #ffffff;
}
.cid-v2gBQMwHQF .card-title {
  color: #ffffff;
}
.cid-v2gBQMwHQF .mbr-text {
  color: #ffffff;
}
.cid-v2gBQMwHQF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gBQMwHQF .link {
  color: #44c200;
}
.cid-v2gBRqBE8G {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gBRqBE8G p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gBRqBE8G .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gBRqBE8G .collapsed {
  border: none;
}
.cid-v2gBRqBE8G .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gBRqBE8G span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gBRqBE8G .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gBRqBE8G .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gBRqBE8G .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gBRqBE8G .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gBRqBE8G .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gBRqBE8G .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gBRqBE8G .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gBRqBE8G .panel-text {
  color: #ffffff;
}
.cid-v2gBRqBE8G H4 {
  color: #ffffff;
}
.cid-v2gBRqBE8G H2 {
  color: #ffffff;
}
.cid-v2gBRqBE8G .mbr-section-text {
  color: #ffffff;
}
.cid-v2gBRqBE8G H3 {
  color: #ffffff;
}
.cid-v2gBROMbuI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gBROMbuI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gBROMbuI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gBROMbuI .row {
    text-align: center;
  }
  .cid-v2gBROMbuI .social-row {
    justify-content: center;
  }
}
.cid-v2gBROMbuI .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gBROMbuI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gBROMbuI .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gBROMbuI .mbr-text {
  color: #fafafa;
}
.cid-v2gBROMbuI .mbr-iconfont {
  color: black;
}
.cid-v2gBROMbuI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aBmOGYZY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aBmOGYZY nav.navbar {
  position: fixed;
}
.cid-v2aBmOGYZY .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-v2aBmOGYZY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aBmOGYZY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aBmOGYZY .dropdown-item:hover,
.cid-v2aBmOGYZY .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aBmOGYZY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aBmOGYZY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aBmOGYZY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aBmOGYZY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aBmOGYZY .nav-link {
  position: relative;
}
.cid-v2aBmOGYZY .container {
  display: flex;
  margin: auto;
}
.cid-v2aBmOGYZY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aBmOGYZY .dropdown-menu,
.cid-v2aBmOGYZY .navbar.opened {
  background: #353535 !important;
}
.cid-v2aBmOGYZY .nav-item:focus,
.cid-v2aBmOGYZY .nav-link:focus {
  outline: none;
}
.cid-v2aBmOGYZY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aBmOGYZY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aBmOGYZY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aBmOGYZY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aBmOGYZY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aBmOGYZY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aBmOGYZY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aBmOGYZY .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aBmOGYZY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aBmOGYZY .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aBmOGYZY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aBmOGYZY .navbar.collapsed {
  justify-content: center;
}
.cid-v2aBmOGYZY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aBmOGYZY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aBmOGYZY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aBmOGYZY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aBmOGYZY .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-v2aBmOGYZY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aBmOGYZY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aBmOGYZY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aBmOGYZY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aBmOGYZY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aBmOGYZY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aBmOGYZY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aBmOGYZY .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-v2aBmOGYZY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aBmOGYZY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aBmOGYZY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aBmOGYZY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aBmOGYZY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aBmOGYZY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aBmOGYZY .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aBmOGYZY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aBmOGYZY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aBmOGYZY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aBmOGYZY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aBmOGYZY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aBmOGYZY .dropdown-item.active,
.cid-v2aBmOGYZY .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aBmOGYZY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aBmOGYZY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aBmOGYZY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aBmOGYZY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aBmOGYZY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aBmOGYZY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aBmOGYZY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aBmOGYZY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aBmOGYZY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aBmOGYZY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aBmOGYZY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aBmOGYZY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aBmOGYZY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aBmOGYZY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aBmOGYZY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aBmOGYZY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aBmOGYZY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aBmOGYZY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aBmOGYZY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aBmOGYZY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aBmOGYZY .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-v2aBmOGYZY .navbar {
    height: 70px;
  }
  .cid-v2aBmOGYZY .navbar.opened {
    height: auto;
  }
  .cid-v2aBmOGYZY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2gHpj5X7O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gHpj5X7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gHpj5X7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gHpj5X7O .row {
    flex-direction: column-reverse;
  }
  .cid-v2gHpj5X7O .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gHpj5X7O .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gHpj5X7O .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gHpj5X7O .media-content,
.cid-v2gHpj5X7O .mbr-figure {
  align-self: center;
}
.cid-v2gHpj5X7O .mbr-figure iframe {
  width: 100%;
}
.cid-v2gHpj5X7O .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gHpj5X7O .mbr-text,
.cid-v2gHpj5X7O .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gHqaAYBi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gHqaAYBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gHqaAYBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gHqaAYBi .video-wrapper iframe {
  width: 100%;
}
.cid-v2gHqaAYBi .mbr-section-title,
.cid-v2gHqaAYBi .mbr-section-subtitle,
.cid-v2gHqaAYBi .mbr-text {
  text-align: center;
}
.cid-v2gHsfXPkD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2svmOvMfO {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2svmOvMfO img,
.cid-v2svmOvMfO .item-img {
  width: 100%;
}
.cid-v2svmOvMfO .item:focus,
.cid-v2svmOvMfO span:focus {
  outline: none;
}
.cid-v2svmOvMfO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2svmOvMfO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2svmOvMfO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2svmOvMfO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2svmOvMfO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2svmOvMfO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2svmOvMfO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2svmOvMfO .mbr-section-title {
  color: #ffffff;
}
.cid-v2svmOvMfO .mbr-text,
.cid-v2svmOvMfO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2svmOvMfO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2svmOvMfO .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2svmOvMfO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2svnLbPox {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2svnLbPox img,
.cid-v2svnLbPox .item-img {
  width: 100%;
}
.cid-v2svnLbPox .item:focus,
.cid-v2svnLbPox span:focus {
  outline: none;
}
.cid-v2svnLbPox .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2svnLbPox .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2svnLbPox .item {
  padding: 0;
  margin: 0;
}
.cid-v2svnLbPox .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2svnLbPox .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2svnLbPox .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2svnLbPox .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2svnLbPox .mbr-section-title {
  color: #232323;
}
.cid-v2svnLbPox .mbr-text,
.cid-v2svnLbPox .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2svnLbPox .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2svnLbPox .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2svnLbPox .mbr-section-subtitle {
  color: #000000;
}
.cid-v2svpwBZH6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2svpwBZH6 img,
.cid-v2svpwBZH6 .item-img {
  width: 100%;
}
.cid-v2svpwBZH6 .item:focus,
.cid-v2svpwBZH6 span:focus {
  outline: none;
}
.cid-v2svpwBZH6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2svpwBZH6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2svpwBZH6 .item {
  padding: 0;
  margin: 0;
}
.cid-v2svpwBZH6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2svpwBZH6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2svpwBZH6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2svpwBZH6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2svpwBZH6 .mbr-section-title {
  color: #ffffff;
}
.cid-v2svpwBZH6 .mbr-text,
.cid-v2svpwBZH6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2svpwBZH6 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2svpwBZH6 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2svpwBZH6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2svrveXz5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2svrveXz5 img,
.cid-v2svrveXz5 .item-img {
  width: 100%;
}
.cid-v2svrveXz5 .item:focus,
.cid-v2svrveXz5 span:focus {
  outline: none;
}
.cid-v2svrveXz5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2svrveXz5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2svrveXz5 .item {
  padding: 0;
  margin: 0;
}
.cid-v2svrveXz5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2svrveXz5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2svrveXz5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2svrveXz5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2svrveXz5 .mbr-section-title {
  color: #ffffff;
}
.cid-v2svrveXz5 .mbr-text,
.cid-v2svrveXz5 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2svrveXz5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2svrveXz5 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2svrveXz5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2svqAXBvg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2svqAXBvg img,
.cid-v2svqAXBvg .item-img {
  width: 100%;
}
.cid-v2svqAXBvg .item:focus,
.cid-v2svqAXBvg span:focus {
  outline: none;
}
.cid-v2svqAXBvg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2svqAXBvg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2svqAXBvg .item {
  padding: 0;
  margin: 0;
}
.cid-v2svqAXBvg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2svqAXBvg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2svqAXBvg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2svqAXBvg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2svqAXBvg .mbr-section-title {
  color: #ffffff;
}
.cid-v2svqAXBvg .mbr-text,
.cid-v2svqAXBvg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2svqAXBvg .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2svqAXBvg .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2svqAXBvg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gHwGfqJi {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gHxp44Wp {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gHxp44Wp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gHxp44Wp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gHxp44Wp .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gHxp44Wp .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gHxp44Wp .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gHxp44Wp .card {
    margin-bottom: 2rem;
  }
  .cid-v2gHxp44Wp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2gHyDxhFz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gHyDxhFz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gHyDxhFz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gHyDxhFz .row {
    flex-direction: column-reverse;
  }
  .cid-v2gHyDxhFz .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gHyDxhFz .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gHyDxhFz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gHyDxhFz .media-content,
.cid-v2gHyDxhFz .mbr-figure {
  align-self: center;
}
.cid-v2gHyDxhFz .mbr-figure iframe {
  width: 100%;
}
.cid-v2gHyDxhFz .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gHyDxhFz .mbr-text,
.cid-v2gHyDxhFz .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gHzQ8zbo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2gHzQ8zbo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gHzQ8zbo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gHzQ8zbo .row {
    flex-direction: column-reverse;
  }
  .cid-v2gHzQ8zbo .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gHzQ8zbo .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gHzQ8zbo .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gHzQ8zbo .media-content,
.cid-v2gHzQ8zbo .mbr-figure {
  align-self: center;
}
.cid-v2gHzQ8zbo .mbr-figure iframe {
  width: 100%;
}
.cid-v2gHzQ8zbo .mbr-section-title {
  color: #232323;
}
.cid-v2gHzQ8zbo .mbr-text,
.cid-v2gHzQ8zbo .mbr-section-btn {
  color: #000000;
}
.cid-v2gHB6rIWd {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gHB6rIWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gHB6rIWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gHB6rIWd .container {
    max-width: 1400px;
  }
}
.cid-v2gHB6rIWd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gHB6rIWd .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gHB6rIWd .row {
  justify-content: center;
}
.cid-v2gHB6rIWd .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gHB6rIWd .card-title,
.cid-v2gHB6rIWd .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gHB6rIWd .mbr-section-title {
  color: #ffffff;
}
.cid-v2gHB6rIWd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gHCjHZxO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sw2yDZOs {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sw2yDZOs img,
.cid-v2sw2yDZOs .item-img {
  width: 100%;
}
.cid-v2sw2yDZOs .item:focus,
.cid-v2sw2yDZOs span:focus {
  outline: none;
}
.cid-v2sw2yDZOs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sw2yDZOs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sw2yDZOs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sw2yDZOs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sw2yDZOs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sw2yDZOs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sw2yDZOs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sw2yDZOs .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sw2yDZOs .mbr-text,
.cid-v2sw2yDZOs .mbr-section-btn {
  text-align: left;
}
.cid-v2sw2yDZOs .item-title {
  text-align: left;
}
.cid-v2sw2yDZOs .item-subtitle {
  text-align: left;
}
.cid-v2sw2yDZOs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gHI6qVR9 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gHI6qVR9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gHI6qVR9 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gHI6qVR9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gHI6qVR9 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gHI6qVR9 .mbr-section-title {
  color: #ffffff;
}
.cid-v2gHI6qVR9 .card-title {
  color: #ffffff;
}
.cid-v2gHI6qVR9 .mbr-text {
  color: #ffffff;
}
.cid-v2gHI6qVR9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gHI6qVR9 .link {
  color: #44c200;
}
.cid-v2gHIF9e0K {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gHIF9e0K p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gHIF9e0K .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gHIF9e0K .collapsed {
  border: none;
}
.cid-v2gHIF9e0K .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gHIF9e0K span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gHIF9e0K .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gHIF9e0K .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gHIF9e0K .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gHIF9e0K .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gHIF9e0K .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gHIF9e0K .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gHIF9e0K .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gHIF9e0K .panel-text {
  color: #ffffff;
}
.cid-v2gHIF9e0K H4 {
  color: #ffffff;
}
.cid-v2gHIF9e0K H2 {
  color: #ffffff;
}
.cid-v2gHIF9e0K .mbr-section-text {
  color: #ffffff;
}
.cid-v2gHIF9e0K H3 {
  color: #ffffff;
}
.cid-v2gHJdYR2J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gHJdYR2J .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gHJdYR2J .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gHJdYR2J .row {
    text-align: center;
  }
  .cid-v2gHJdYR2J .social-row {
    justify-content: center;
  }
}
.cid-v2gHJdYR2J .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gHJdYR2J .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gHJdYR2J .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gHJdYR2J .mbr-text {
  color: #fafafa;
}
.cid-v2gHJdYR2J .mbr-iconfont {
  color: black;
}
.cid-v2gHJdYR2J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aBPJilxR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aBPJilxR nav.navbar {
  position: fixed;
}
.cid-v2aBPJilxR .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-v2aBPJilxR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aBPJilxR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aBPJilxR .dropdown-item:hover,
.cid-v2aBPJilxR .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aBPJilxR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aBPJilxR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aBPJilxR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aBPJilxR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aBPJilxR .nav-link {
  position: relative;
}
.cid-v2aBPJilxR .container {
  display: flex;
  margin: auto;
}
.cid-v2aBPJilxR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aBPJilxR .dropdown-menu,
.cid-v2aBPJilxR .navbar.opened {
  background: #353535 !important;
}
.cid-v2aBPJilxR .nav-item:focus,
.cid-v2aBPJilxR .nav-link:focus {
  outline: none;
}
.cid-v2aBPJilxR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aBPJilxR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aBPJilxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aBPJilxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aBPJilxR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aBPJilxR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aBPJilxR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aBPJilxR .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aBPJilxR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aBPJilxR .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aBPJilxR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aBPJilxR .navbar.collapsed {
  justify-content: center;
}
.cid-v2aBPJilxR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aBPJilxR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aBPJilxR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aBPJilxR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aBPJilxR .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-v2aBPJilxR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aBPJilxR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aBPJilxR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aBPJilxR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aBPJilxR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aBPJilxR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aBPJilxR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aBPJilxR .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-v2aBPJilxR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aBPJilxR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aBPJilxR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aBPJilxR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aBPJilxR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aBPJilxR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aBPJilxR .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aBPJilxR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aBPJilxR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aBPJilxR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aBPJilxR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aBPJilxR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aBPJilxR .dropdown-item.active,
.cid-v2aBPJilxR .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aBPJilxR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aBPJilxR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aBPJilxR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aBPJilxR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aBPJilxR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aBPJilxR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aBPJilxR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aBPJilxR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aBPJilxR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aBPJilxR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aBPJilxR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aBPJilxR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aBPJilxR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aBPJilxR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aBPJilxR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aBPJilxR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aBPJilxR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aBPJilxR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aBPJilxR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aBPJilxR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aBPJilxR .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-v2aBPJilxR .navbar {
    height: 70px;
  }
  .cid-v2aBPJilxR .navbar.opened {
    height: auto;
  }
  .cid-v2aBPJilxR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2gOIA6ix8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gOIA6ix8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gOIA6ix8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gOIA6ix8 .row {
    flex-direction: column-reverse;
  }
  .cid-v2gOIA6ix8 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gOIA6ix8 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gOIA6ix8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gOIA6ix8 .media-content,
.cid-v2gOIA6ix8 .mbr-figure {
  align-self: center;
}
.cid-v2gOIA6ix8 .mbr-figure iframe {
  width: 100%;
}
.cid-v2gOIA6ix8 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gOIA6ix8 .mbr-text,
.cid-v2gOIA6ix8 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gOKj44Ep {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gOKj44Ep .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gOKj44Ep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gOKj44Ep .video-wrapper iframe {
  width: 100%;
}
.cid-v2gOKj44Ep .mbr-section-title,
.cid-v2gOKj44Ep .mbr-section-subtitle,
.cid-v2gOKj44Ep .mbr-text {
  text-align: center;
}
.cid-v2gRHmpAuT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sxnkU5GT {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sxnkU5GT img,
.cid-v2sxnkU5GT .item-img {
  width: 100%;
}
.cid-v2sxnkU5GT .item:focus,
.cid-v2sxnkU5GT span:focus {
  outline: none;
}
.cid-v2sxnkU5GT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sxnkU5GT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sxnkU5GT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sxnkU5GT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sxnkU5GT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sxnkU5GT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sxnkU5GT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sxnkU5GT .mbr-section-title {
  color: #ffffff;
}
.cid-v2sxnkU5GT .mbr-text,
.cid-v2sxnkU5GT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxnkU5GT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxnkU5GT .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sxnkU5GT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sxoSxzqO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sxoSxzqO img,
.cid-v2sxoSxzqO .item-img {
  width: 100%;
}
.cid-v2sxoSxzqO .item:focus,
.cid-v2sxoSxzqO span:focus {
  outline: none;
}
.cid-v2sxoSxzqO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sxoSxzqO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sxoSxzqO .item {
  padding: 0;
  margin: 0;
}
.cid-v2sxoSxzqO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sxoSxzqO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sxoSxzqO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sxoSxzqO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sxoSxzqO .mbr-section-title {
  color: #232323;
}
.cid-v2sxoSxzqO .mbr-text,
.cid-v2sxoSxzqO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxoSxzqO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxoSxzqO .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sxoSxzqO .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sxqlzkla {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sxqlzkla img,
.cid-v2sxqlzkla .item-img {
  width: 100%;
}
.cid-v2sxqlzkla .item:focus,
.cid-v2sxqlzkla span:focus {
  outline: none;
}
.cid-v2sxqlzkla .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sxqlzkla .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sxqlzkla .item {
  padding: 0;
  margin: 0;
}
.cid-v2sxqlzkla .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sxqlzkla .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sxqlzkla .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sxqlzkla .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sxqlzkla .mbr-section-title {
  color: #ffffff;
}
.cid-v2sxqlzkla .mbr-text,
.cid-v2sxqlzkla .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxqlzkla .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxqlzkla .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sxqlzkla .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sxqVGnBR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sxqVGnBR img,
.cid-v2sxqVGnBR .item-img {
  width: 100%;
}
.cid-v2sxqVGnBR .item:focus,
.cid-v2sxqVGnBR span:focus {
  outline: none;
}
.cid-v2sxqVGnBR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sxqVGnBR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sxqVGnBR .item {
  padding: 0;
  margin: 0;
}
.cid-v2sxqVGnBR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sxqVGnBR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sxqVGnBR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sxqVGnBR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sxqVGnBR .mbr-section-title {
  color: #ffffff;
}
.cid-v2sxqVGnBR .mbr-text,
.cid-v2sxqVGnBR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxqVGnBR .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxqVGnBR .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sxqVGnBR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sxvzzQpM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sxvzzQpM img,
.cid-v2sxvzzQpM .item-img {
  width: 100%;
}
.cid-v2sxvzzQpM .item:focus,
.cid-v2sxvzzQpM span:focus {
  outline: none;
}
.cid-v2sxvzzQpM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sxvzzQpM .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sxvzzQpM .item {
  padding: 0;
  margin: 0;
}
.cid-v2sxvzzQpM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sxvzzQpM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sxvzzQpM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sxvzzQpM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sxvzzQpM .mbr-section-title {
  color: #ffffff;
}
.cid-v2sxvzzQpM .mbr-text,
.cid-v2sxvzzQpM .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxvzzQpM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sxvzzQpM .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sxvzzQpM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gOPYGK5I {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gORhenAf {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gORhenAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gORhenAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gORhenAf .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gORhenAf .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gORhenAf .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gORhenAf .card {
    margin-bottom: 2rem;
  }
  .cid-v2gORhenAf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sC0db2C2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sC0db2C2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sC0db2C2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sC0db2C2 .mbr-section-title {
  color: #000000;
}
.cid-v2sC0LYBcr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sC0LYBcr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sC0LYBcr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sC0LYBcr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sC0LYBcr .row {
  flex-direction: row-reverse;
}
.cid-v2sC0LYBcr img {
  width: 100%;
}
.cid-v2sC1le5J4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gOS90imT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gOS90imT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gOS90imT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gOS90imT .row {
    flex-direction: column-reverse;
  }
  .cid-v2gOS90imT .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gOS90imT .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gOS90imT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gOS90imT .media-content,
.cid-v2gOS90imT .mbr-figure {
  align-self: center;
}
.cid-v2gOS90imT .mbr-figure iframe {
  width: 100%;
}
.cid-v2gOS90imT .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gOS90imT .mbr-text,
.cid-v2gOS90imT .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gOSDNf5m {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2gOSDNf5m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gOSDNf5m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gOSDNf5m .row {
    flex-direction: column-reverse;
  }
  .cid-v2gOSDNf5m .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gOSDNf5m .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gOSDNf5m .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gOSDNf5m .media-content,
.cid-v2gOSDNf5m .mbr-figure {
  align-self: center;
}
.cid-v2gOSDNf5m .mbr-figure iframe {
  width: 100%;
}
.cid-v2gOSDNf5m .mbr-section-title {
  color: #232323;
}
.cid-v2gOSDNf5m .mbr-text,
.cid-v2gOSDNf5m .mbr-section-btn {
  color: #000000;
}
.cid-v2gOTcWwPj {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gOTcWwPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gOTcWwPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gOTcWwPj .container {
    max-width: 1400px;
  }
}
.cid-v2gOTcWwPj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gOTcWwPj .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gOTcWwPj .row {
  justify-content: center;
}
.cid-v2gOTcWwPj .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gOTcWwPj .card-title,
.cid-v2gOTcWwPj .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gOTcWwPj .mbr-section-title {
  color: #ffffff;
}
.cid-v2gOTcWwPj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gOTGqGTK {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sy3IDRs0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sy3IDRs0 img,
.cid-v2sy3IDRs0 .item-img {
  width: 100%;
}
.cid-v2sy3IDRs0 .item:focus,
.cid-v2sy3IDRs0 span:focus {
  outline: none;
}
.cid-v2sy3IDRs0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sy3IDRs0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sy3IDRs0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sy3IDRs0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sy3IDRs0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sy3IDRs0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sy3IDRs0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sy3IDRs0 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sy3IDRs0 .mbr-text,
.cid-v2sy3IDRs0 .mbr-section-btn {
  text-align: left;
}
.cid-v2sy3IDRs0 .item-title {
  text-align: left;
}
.cid-v2sy3IDRs0 .item-subtitle {
  text-align: left;
}
.cid-v2sy3IDRs0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gOVQLPzn {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gOVQLPzn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gOVQLPzn .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gOVQLPzn .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gOVQLPzn .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gOVQLPzn .mbr-section-title {
  color: #ffffff;
}
.cid-v2gOVQLPzn .card-title {
  color: #ffffff;
}
.cid-v2gOVQLPzn .mbr-text {
  color: #ffffff;
}
.cid-v2gOVQLPzn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gOVQLPzn .link {
  color: #44c200;
}
.cid-v2gOWuZLPx {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gOWuZLPx p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gOWuZLPx .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gOWuZLPx .collapsed {
  border: none;
}
.cid-v2gOWuZLPx .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gOWuZLPx span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gOWuZLPx .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gOWuZLPx .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gOWuZLPx .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gOWuZLPx .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gOWuZLPx .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gOWuZLPx .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gOWuZLPx .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gOWuZLPx .panel-text {
  color: #ffffff;
}
.cid-v2gOWuZLPx H4 {
  color: #ffffff;
}
.cid-v2gOWuZLPx H2 {
  color: #ffffff;
}
.cid-v2gOWuZLPx .mbr-section-text {
  color: #ffffff;
}
.cid-v2gOWuZLPx H3 {
  color: #ffffff;
}
.cid-v2gOX1FuYm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gOX1FuYm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gOX1FuYm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gOX1FuYm .row {
    text-align: center;
  }
  .cid-v2gOX1FuYm .social-row {
    justify-content: center;
  }
}
.cid-v2gOX1FuYm .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gOX1FuYm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gOX1FuYm .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gOX1FuYm .mbr-text {
  color: #fafafa;
}
.cid-v2gOX1FuYm .mbr-iconfont {
  color: black;
}
.cid-v2gOX1FuYm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aXEa0rAt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aXEa0rAt nav.navbar {
  position: fixed;
}
.cid-v2aXEa0rAt .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-v2aXEa0rAt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aXEa0rAt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aXEa0rAt .dropdown-item:hover,
.cid-v2aXEa0rAt .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aXEa0rAt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aXEa0rAt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aXEa0rAt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aXEa0rAt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aXEa0rAt .nav-link {
  position: relative;
}
.cid-v2aXEa0rAt .container {
  display: flex;
  margin: auto;
}
.cid-v2aXEa0rAt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aXEa0rAt .dropdown-menu,
.cid-v2aXEa0rAt .navbar.opened {
  background: #353535 !important;
}
.cid-v2aXEa0rAt .nav-item:focus,
.cid-v2aXEa0rAt .nav-link:focus {
  outline: none;
}
.cid-v2aXEa0rAt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aXEa0rAt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aXEa0rAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aXEa0rAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aXEa0rAt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aXEa0rAt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aXEa0rAt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aXEa0rAt .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aXEa0rAt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aXEa0rAt .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aXEa0rAt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aXEa0rAt .navbar.collapsed {
  justify-content: center;
}
.cid-v2aXEa0rAt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aXEa0rAt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aXEa0rAt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aXEa0rAt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aXEa0rAt .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-v2aXEa0rAt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aXEa0rAt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aXEa0rAt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aXEa0rAt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aXEa0rAt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aXEa0rAt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aXEa0rAt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aXEa0rAt .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-v2aXEa0rAt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aXEa0rAt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aXEa0rAt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aXEa0rAt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aXEa0rAt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aXEa0rAt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aXEa0rAt .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aXEa0rAt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aXEa0rAt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aXEa0rAt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aXEa0rAt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aXEa0rAt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aXEa0rAt .dropdown-item.active,
.cid-v2aXEa0rAt .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aXEa0rAt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aXEa0rAt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aXEa0rAt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aXEa0rAt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aXEa0rAt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aXEa0rAt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aXEa0rAt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aXEa0rAt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aXEa0rAt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aXEa0rAt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aXEa0rAt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aXEa0rAt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aXEa0rAt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aXEa0rAt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aXEa0rAt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aXEa0rAt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aXEa0rAt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aXEa0rAt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aXEa0rAt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aXEa0rAt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aXEa0rAt .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-v2aXEa0rAt .navbar {
    height: 70px;
  }
  .cid-v2aXEa0rAt .navbar.opened {
    height: auto;
  }
  .cid-v2aXEa0rAt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2h6fSkMCx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2h6fSkMCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6fSkMCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2h6fSkMCx .row {
    flex-direction: column-reverse;
  }
  .cid-v2h6fSkMCx .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2h6fSkMCx .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2h6fSkMCx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2h6fSkMCx .media-content,
.cid-v2h6fSkMCx .mbr-figure {
  align-self: center;
}
.cid-v2h6fSkMCx .mbr-figure iframe {
  width: 100%;
}
.cid-v2h6fSkMCx .mbr-section-title {
  color: #ffb18a;
}
.cid-v2h6fSkMCx .mbr-text,
.cid-v2h6fSkMCx .mbr-section-btn {
  color: #ffffff;
}
.cid-v2h6it3tWG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2h6it3tWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6it3tWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2h6it3tWG .video-wrapper iframe {
  width: 100%;
}
.cid-v2h6it3tWG .mbr-section-title,
.cid-v2h6it3tWG .mbr-section-subtitle,
.cid-v2h6it3tWG .mbr-text {
  text-align: center;
}
.cid-v2h6j2TgKB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2h6j2TgKB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6j2TgKB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2h6j2TgKB .video-wrapper iframe {
  width: 100%;
}
.cid-v2h6j2TgKB .mbr-section-title,
.cid-v2h6j2TgKB .mbr-section-subtitle,
.cid-v2h6j2TgKB .mbr-text {
  text-align: center;
}
.cid-v2kZBtQPE4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2kZBtQPE4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kZBtQPE4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2kZBtQPE4 .video-wrapper iframe {
  width: 100%;
}
.cid-v2kZBtQPE4 .mbr-section-title,
.cid-v2kZBtQPE4 .mbr-section-subtitle,
.cid-v2kZBtQPE4 .mbr-text {
  text-align: center;
}
.cid-v2h6rLl9Qe {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sznRJHwW {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sznRJHwW img,
.cid-v2sznRJHwW .item-img {
  width: 100%;
}
.cid-v2sznRJHwW .item:focus,
.cid-v2sznRJHwW span:focus {
  outline: none;
}
.cid-v2sznRJHwW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sznRJHwW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sznRJHwW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sznRJHwW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sznRJHwW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sznRJHwW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sznRJHwW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sznRJHwW .mbr-section-title {
  color: #ffffff;
}
.cid-v2sznRJHwW .mbr-text,
.cid-v2sznRJHwW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sznRJHwW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sznRJHwW .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sznRJHwW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2szoWqB6r {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2szoWqB6r img,
.cid-v2szoWqB6r .item-img {
  width: 100%;
}
.cid-v2szoWqB6r .item:focus,
.cid-v2szoWqB6r span:focus {
  outline: none;
}
.cid-v2szoWqB6r .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szoWqB6r .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2szoWqB6r .item {
  padding: 0;
  margin: 0;
}
.cid-v2szoWqB6r .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szoWqB6r .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szoWqB6r .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2szoWqB6r .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szoWqB6r .mbr-section-title {
  color: #232323;
}
.cid-v2szoWqB6r .mbr-text,
.cid-v2szoWqB6r .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2szoWqB6r .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2szoWqB6r .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2szoWqB6r .mbr-section-subtitle {
  color: #000000;
}
.cid-v2szpTREaL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2szpTREaL img,
.cid-v2szpTREaL .item-img {
  width: 100%;
}
.cid-v2szpTREaL .item:focus,
.cid-v2szpTREaL span:focus {
  outline: none;
}
.cid-v2szpTREaL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szpTREaL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2szpTREaL .item {
  padding: 0;
  margin: 0;
}
.cid-v2szpTREaL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szpTREaL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szpTREaL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2szpTREaL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szpTREaL .mbr-section-title {
  color: #ffffff;
}
.cid-v2szpTREaL .mbr-text,
.cid-v2szpTREaL .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2szpTREaL .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2szpTREaL .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2szpTREaL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2szquJtF7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2szquJtF7 img,
.cid-v2szquJtF7 .item-img {
  width: 100%;
}
.cid-v2szquJtF7 .item:focus,
.cid-v2szquJtF7 span:focus {
  outline: none;
}
.cid-v2szquJtF7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szquJtF7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2szquJtF7 .item {
  padding: 0;
  margin: 0;
}
.cid-v2szquJtF7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szquJtF7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szquJtF7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2szquJtF7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szquJtF7 .mbr-section-title {
  color: #ffffff;
}
.cid-v2szquJtF7 .mbr-text,
.cid-v2szquJtF7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2szquJtF7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2szquJtF7 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2szquJtF7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2szqWKcDS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2szqWKcDS img,
.cid-v2szqWKcDS .item-img {
  width: 100%;
}
.cid-v2szqWKcDS .item:focus,
.cid-v2szqWKcDS span:focus {
  outline: none;
}
.cid-v2szqWKcDS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szqWKcDS .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2szqWKcDS .item {
  padding: 0;
  margin: 0;
}
.cid-v2szqWKcDS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szqWKcDS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szqWKcDS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2szqWKcDS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szqWKcDS .mbr-section-title {
  color: #ffffff;
}
.cid-v2szqWKcDS .mbr-text,
.cid-v2szqWKcDS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2szqWKcDS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2szqWKcDS .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2szqWKcDS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2h6xRWreu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2h6yy6Gji {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2h6yy6Gji .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6yy6Gji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2h6yy6Gji .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2h6yy6Gji .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2h6yy6Gji .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2h6yy6Gji .card {
    margin-bottom: 2rem;
  }
  .cid-v2h6yy6Gji .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sBNkbxiQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sBNkbxiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sBNkbxiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sBNkbxiQ .mbr-section-title {
  color: #000000;
}
.cid-v2sBLQsO9B {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sBLQsO9B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sBLQsO9B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sBLQsO9B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sBLQsO9B .row {
  flex-direction: row-reverse;
}
.cid-v2sBLQsO9B img {
  width: 100%;
}
.cid-v2sBMuDg9x {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2h6zb4BCP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2h6zb4BCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6zb4BCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2h6zb4BCP .row {
    flex-direction: column-reverse;
  }
  .cid-v2h6zb4BCP .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2h6zb4BCP .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2h6zb4BCP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2h6zb4BCP .media-content,
.cid-v2h6zb4BCP .mbr-figure {
  align-self: center;
}
.cid-v2h6zb4BCP .mbr-figure iframe {
  width: 100%;
}
.cid-v2h6zb4BCP .mbr-section-title {
  color: #ffb18a;
}
.cid-v2h6zb4BCP .mbr-text,
.cid-v2h6zb4BCP .mbr-section-btn {
  color: #ffffff;
}
.cid-v2h6zRM2WO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2h6zRM2WO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6zRM2WO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2h6zRM2WO .row {
    flex-direction: column-reverse;
  }
  .cid-v2h6zRM2WO .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2h6zRM2WO .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2h6zRM2WO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2h6zRM2WO .media-content,
.cid-v2h6zRM2WO .mbr-figure {
  align-self: center;
}
.cid-v2h6zRM2WO .mbr-figure iframe {
  width: 100%;
}
.cid-v2h6zRM2WO .mbr-section-title {
  color: #232323;
}
.cid-v2h6zRM2WO .mbr-text,
.cid-v2h6zRM2WO .mbr-section-btn {
  color: #000000;
}
.cid-v2h6AW9grZ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2h6AW9grZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2h6AW9grZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2h6AW9grZ .container {
    max-width: 1400px;
  }
}
.cid-v2h6AW9grZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2h6AW9grZ .card-wrapper {
  margin-top: 3rem;
}
.cid-v2h6AW9grZ .row {
  justify-content: center;
}
.cid-v2h6AW9grZ .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2h6AW9grZ .card-title,
.cid-v2h6AW9grZ .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2h6AW9grZ .mbr-section-title {
  color: #ffffff;
}
.cid-v2h6AW9grZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2h6BvH5xb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2szSkPWnX {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2szSkPWnX img,
.cid-v2szSkPWnX .item-img {
  width: 100%;
}
.cid-v2szSkPWnX .item:focus,
.cid-v2szSkPWnX span:focus {
  outline: none;
}
.cid-v2szSkPWnX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szSkPWnX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szSkPWnX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2szSkPWnX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szSkPWnX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2szSkPWnX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2szSkPWnX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szSkPWnX .mbr-section-title {
  color: #ffb18a;
}
.cid-v2szSkPWnX .mbr-text,
.cid-v2szSkPWnX .mbr-section-btn {
  text-align: left;
}
.cid-v2szSkPWnX .item-title {
  text-align: left;
}
.cid-v2szSkPWnX .item-subtitle {
  text-align: left;
}
.cid-v2szSkPWnX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2h6F8GtW3 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2h6F8GtW3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2h6F8GtW3 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2h6F8GtW3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2h6F8GtW3 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2h6F8GtW3 .mbr-section-title {
  color: #ffffff;
}
.cid-v2h6F8GtW3 .card-title {
  color: #ffffff;
}
.cid-v2h6F8GtW3 .mbr-text {
  color: #ffffff;
}
.cid-v2h6F8GtW3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2h6F8GtW3 .link {
  color: #44c200;
}
.cid-v2h6FwCLNa {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2h6FwCLNa p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2h6FwCLNa .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2h6FwCLNa .collapsed {
  border: none;
}
.cid-v2h6FwCLNa .collapsed span {
  transform: rotate(0deg);
}
.cid-v2h6FwCLNa span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2h6FwCLNa .panel-body {
  padding-top: 0.5rem;
}
.cid-v2h6FwCLNa .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2h6FwCLNa .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2h6FwCLNa .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2h6FwCLNa .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2h6FwCLNa .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2h6FwCLNa .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2h6FwCLNa .panel-text {
  color: #ffffff;
}
.cid-v2h6FwCLNa H4 {
  color: #ffffff;
}
.cid-v2h6FwCLNa H2 {
  color: #ffffff;
}
.cid-v2h6FwCLNa .mbr-section-text {
  color: #ffffff;
}
.cid-v2h6FwCLNa H3 {
  color: #ffffff;
}
.cid-v2h6G20Ipo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2h6G20Ipo .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2h6G20Ipo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2h6G20Ipo .row {
    text-align: center;
  }
  .cid-v2h6G20Ipo .social-row {
    justify-content: center;
  }
}
.cid-v2h6G20Ipo .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2h6G20Ipo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2h6G20Ipo .list {
    margin-bottom: 0rem;
  }
}
.cid-v2h6G20Ipo .mbr-text {
  color: #fafafa;
}
.cid-v2h6G20Ipo .mbr-iconfont {
  color: black;
}
.cid-v2h6G20Ipo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aYMfzbjG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aYMfzbjG nav.navbar {
  position: fixed;
}
.cid-v2aYMfzbjG .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-v2aYMfzbjG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aYMfzbjG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aYMfzbjG .dropdown-item:hover,
.cid-v2aYMfzbjG .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aYMfzbjG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aYMfzbjG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aYMfzbjG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aYMfzbjG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aYMfzbjG .nav-link {
  position: relative;
}
.cid-v2aYMfzbjG .container {
  display: flex;
  margin: auto;
}
.cid-v2aYMfzbjG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aYMfzbjG .dropdown-menu,
.cid-v2aYMfzbjG .navbar.opened {
  background: #353535 !important;
}
.cid-v2aYMfzbjG .nav-item:focus,
.cid-v2aYMfzbjG .nav-link:focus {
  outline: none;
}
.cid-v2aYMfzbjG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aYMfzbjG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aYMfzbjG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aYMfzbjG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aYMfzbjG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aYMfzbjG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aYMfzbjG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aYMfzbjG .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aYMfzbjG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aYMfzbjG .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aYMfzbjG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aYMfzbjG .navbar.collapsed {
  justify-content: center;
}
.cid-v2aYMfzbjG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aYMfzbjG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aYMfzbjG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aYMfzbjG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aYMfzbjG .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-v2aYMfzbjG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aYMfzbjG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aYMfzbjG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aYMfzbjG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aYMfzbjG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aYMfzbjG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aYMfzbjG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aYMfzbjG .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-v2aYMfzbjG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aYMfzbjG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aYMfzbjG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aYMfzbjG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aYMfzbjG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aYMfzbjG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aYMfzbjG .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aYMfzbjG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aYMfzbjG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aYMfzbjG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aYMfzbjG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aYMfzbjG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aYMfzbjG .dropdown-item.active,
.cid-v2aYMfzbjG .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aYMfzbjG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aYMfzbjG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aYMfzbjG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aYMfzbjG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aYMfzbjG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aYMfzbjG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aYMfzbjG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aYMfzbjG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aYMfzbjG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aYMfzbjG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aYMfzbjG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aYMfzbjG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aYMfzbjG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aYMfzbjG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aYMfzbjG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aYMfzbjG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aYMfzbjG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aYMfzbjG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aYMfzbjG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aYMfzbjG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aYMfzbjG .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-v2aYMfzbjG .navbar {
    height: 70px;
  }
  .cid-v2aYMfzbjG .navbar.opened {
    height: auto;
  }
  .cid-v2aYMfzbjG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2hmH2TC4n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2hmH2TC4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hmH2TC4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hmH2TC4n .row {
    flex-direction: column-reverse;
  }
  .cid-v2hmH2TC4n .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hmH2TC4n .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hmH2TC4n .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hmH2TC4n .media-content,
.cid-v2hmH2TC4n .mbr-figure {
  align-self: center;
}
.cid-v2hmH2TC4n .mbr-figure iframe {
  width: 100%;
}
.cid-v2hmH2TC4n .mbr-section-title {
  color: #ffb18a;
}
.cid-v2hmH2TC4n .mbr-text,
.cid-v2hmH2TC4n .mbr-section-btn {
  color: #ffffff;
}
.cid-v2n0flUHUd {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2n0flUHUd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2n0flUHUd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2n0flUHUd .video-wrapper iframe {
  width: 100%;
}
.cid-v2n0flUHUd .mbr-section-title,
.cid-v2n0flUHUd .mbr-section-subtitle,
.cid-v2n0flUHUd .mbr-text {
  text-align: center;
}
.cid-v2hqmiSaKd {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sCglvM6o {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sCglvM6o img,
.cid-v2sCglvM6o .item-img {
  width: 100%;
}
.cid-v2sCglvM6o .item:focus,
.cid-v2sCglvM6o span:focus {
  outline: none;
}
.cid-v2sCglvM6o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCglvM6o .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCglvM6o .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sCglvM6o .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCglvM6o .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sCglvM6o .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sCglvM6o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCglvM6o .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCglvM6o .mbr-text,
.cid-v2sCglvM6o .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCglvM6o .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCglvM6o .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCglvM6o .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sChwn2S6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sChwn2S6 img,
.cid-v2sChwn2S6 .item-img {
  width: 100%;
}
.cid-v2sChwn2S6 .item:focus,
.cid-v2sChwn2S6 span:focus {
  outline: none;
}
.cid-v2sChwn2S6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sChwn2S6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sChwn2S6 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sChwn2S6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sChwn2S6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sChwn2S6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sChwn2S6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sChwn2S6 .mbr-section-title {
  color: #232323;
}
.cid-v2sChwn2S6 .mbr-text,
.cid-v2sChwn2S6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sChwn2S6 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sChwn2S6 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sChwn2S6 .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sCilwJwv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCilwJwv img,
.cid-v2sCilwJwv .item-img {
  width: 100%;
}
.cid-v2sCilwJwv .item:focus,
.cid-v2sCilwJwv span:focus {
  outline: none;
}
.cid-v2sCilwJwv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCilwJwv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCilwJwv .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCilwJwv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCilwJwv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCilwJwv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCilwJwv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCilwJwv .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCilwJwv .mbr-text,
.cid-v2sCilwJwv .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCilwJwv .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCilwJwv .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCilwJwv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sCj2hMcX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCj2hMcX img,
.cid-v2sCj2hMcX .item-img {
  width: 100%;
}
.cid-v2sCj2hMcX .item:focus,
.cid-v2sCj2hMcX span:focus {
  outline: none;
}
.cid-v2sCj2hMcX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCj2hMcX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCj2hMcX .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCj2hMcX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCj2hMcX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCj2hMcX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCj2hMcX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCj2hMcX .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCj2hMcX .mbr-text,
.cid-v2sCj2hMcX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCj2hMcX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCj2hMcX .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCj2hMcX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sCjLScjF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCjLScjF img,
.cid-v2sCjLScjF .item-img {
  width: 100%;
}
.cid-v2sCjLScjF .item:focus,
.cid-v2sCjLScjF span:focus {
  outline: none;
}
.cid-v2sCjLScjF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCjLScjF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCjLScjF .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCjLScjF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCjLScjF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCjLScjF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCjLScjF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCjLScjF .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCjLScjF .mbr-text,
.cid-v2sCjLScjF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCjLScjF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCjLScjF .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCjLScjF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hmMq3iB9 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2hmRaRKbJ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2hmRaRKbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hmRaRKbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hmRaRKbJ .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2hmRaRKbJ .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2hmRaRKbJ .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2hmRaRKbJ .card {
    margin-bottom: 2rem;
  }
  .cid-v2hmRaRKbJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sCdwltHE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCdwltHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sCdwltHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sCdwltHE .mbr-section-title {
  color: #000000;
}
.cid-v2sCe5fXHU {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sCe5fXHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sCe5fXHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sCe5fXHU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sCe5fXHU .row {
  flex-direction: row-reverse;
}
.cid-v2sCe5fXHU img {
  width: 100%;
}
.cid-v2sCezhZaw {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2hmRSpxVR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2hmRSpxVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hmRSpxVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hmRSpxVR .row {
    flex-direction: column-reverse;
  }
  .cid-v2hmRSpxVR .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hmRSpxVR .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hmRSpxVR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hmRSpxVR .media-content,
.cid-v2hmRSpxVR .mbr-figure {
  align-self: center;
}
.cid-v2hmRSpxVR .mbr-figure iframe {
  width: 100%;
}
.cid-v2hmRSpxVR .mbr-section-title {
  color: #ffb18a;
}
.cid-v2hmRSpxVR .mbr-text,
.cid-v2hmRSpxVR .mbr-section-btn {
  color: #ffffff;
}
.cid-v2hmStlGts {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2hmStlGts .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hmStlGts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hmStlGts .row {
    flex-direction: column-reverse;
  }
  .cid-v2hmStlGts .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hmStlGts .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hmStlGts .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hmStlGts .media-content,
.cid-v2hmStlGts .mbr-figure {
  align-self: center;
}
.cid-v2hmStlGts .mbr-figure iframe {
  width: 100%;
}
.cid-v2hmStlGts .mbr-section-title {
  color: #232323;
}
.cid-v2hmStlGts .mbr-text,
.cid-v2hmStlGts .mbr-section-btn {
  color: #000000;
}
.cid-v2hmUbv3mT {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2hmUbv3mT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hmUbv3mT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2hmUbv3mT .container {
    max-width: 1400px;
  }
}
.cid-v2hmUbv3mT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2hmUbv3mT .card-wrapper {
  margin-top: 3rem;
}
.cid-v2hmUbv3mT .row {
  justify-content: center;
}
.cid-v2hmUbv3mT .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2hmUbv3mT .card-title,
.cid-v2hmUbv3mT .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2hmUbv3mT .mbr-section-title {
  color: #ffffff;
}
.cid-v2hmUbv3mT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hmV4FXK2 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sCaLKFyM {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sCaLKFyM img,
.cid-v2sCaLKFyM .item-img {
  width: 100%;
}
.cid-v2sCaLKFyM .item:focus,
.cid-v2sCaLKFyM span:focus {
  outline: none;
}
.cid-v2sCaLKFyM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCaLKFyM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCaLKFyM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sCaLKFyM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCaLKFyM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sCaLKFyM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sCaLKFyM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCaLKFyM .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sCaLKFyM .mbr-text,
.cid-v2sCaLKFyM .mbr-section-btn {
  text-align: left;
}
.cid-v2sCaLKFyM .item-title {
  text-align: left;
}
.cid-v2sCaLKFyM .item-subtitle {
  text-align: left;
}
.cid-v2sCaLKFyM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hmZ8Wc8e {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2hmZ8Wc8e .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2hmZ8Wc8e .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2hmZ8Wc8e .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2hmZ8Wc8e .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2hmZ8Wc8e .mbr-section-title {
  color: #ffffff;
}
.cid-v2hmZ8Wc8e .card-title {
  color: #ffffff;
}
.cid-v2hmZ8Wc8e .mbr-text {
  color: #ffffff;
}
.cid-v2hmZ8Wc8e .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hmZ8Wc8e .link {
  color: #44c200;
}
.cid-v2hmZyZJWw {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2hmZyZJWw p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2hmZyZJWw .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2hmZyZJWw .collapsed {
  border: none;
}
.cid-v2hmZyZJWw .collapsed span {
  transform: rotate(0deg);
}
.cid-v2hmZyZJWw span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2hmZyZJWw .panel-body {
  padding-top: 0.5rem;
}
.cid-v2hmZyZJWw .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2hmZyZJWw .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2hmZyZJWw .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2hmZyZJWw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2hmZyZJWw .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2hmZyZJWw .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2hmZyZJWw .panel-text {
  color: #ffffff;
}
.cid-v2hmZyZJWw H4 {
  color: #ffffff;
}
.cid-v2hmZyZJWw H2 {
  color: #ffffff;
}
.cid-v2hmZyZJWw .mbr-section-text {
  color: #ffffff;
}
.cid-v2hmZyZJWw H3 {
  color: #ffffff;
}
.cid-v2hn01cduG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2hn01cduG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2hn01cduG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2hn01cduG .row {
    text-align: center;
  }
  .cid-v2hn01cduG .social-row {
    justify-content: center;
  }
}
.cid-v2hn01cduG .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2hn01cduG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2hn01cduG .list {
    margin-bottom: 0rem;
  }
}
.cid-v2hn01cduG .mbr-text {
  color: #fafafa;
}
.cid-v2hn01cduG .mbr-iconfont {
  color: black;
}
.cid-v2hn01cduG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aZkvQSfz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aZkvQSfz nav.navbar {
  position: fixed;
}
.cid-v2aZkvQSfz .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-v2aZkvQSfz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aZkvQSfz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aZkvQSfz .dropdown-item:hover,
.cid-v2aZkvQSfz .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aZkvQSfz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aZkvQSfz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aZkvQSfz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aZkvQSfz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aZkvQSfz .nav-link {
  position: relative;
}
.cid-v2aZkvQSfz .container {
  display: flex;
  margin: auto;
}
.cid-v2aZkvQSfz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aZkvQSfz .dropdown-menu,
.cid-v2aZkvQSfz .navbar.opened {
  background: #353535 !important;
}
.cid-v2aZkvQSfz .nav-item:focus,
.cid-v2aZkvQSfz .nav-link:focus {
  outline: none;
}
.cid-v2aZkvQSfz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aZkvQSfz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aZkvQSfz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aZkvQSfz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aZkvQSfz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aZkvQSfz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aZkvQSfz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aZkvQSfz .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aZkvQSfz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aZkvQSfz .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aZkvQSfz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aZkvQSfz .navbar.collapsed {
  justify-content: center;
}
.cid-v2aZkvQSfz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aZkvQSfz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aZkvQSfz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aZkvQSfz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aZkvQSfz .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-v2aZkvQSfz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aZkvQSfz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aZkvQSfz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aZkvQSfz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aZkvQSfz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aZkvQSfz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aZkvQSfz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aZkvQSfz .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-v2aZkvQSfz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aZkvQSfz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aZkvQSfz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aZkvQSfz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aZkvQSfz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aZkvQSfz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aZkvQSfz .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aZkvQSfz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aZkvQSfz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aZkvQSfz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aZkvQSfz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aZkvQSfz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aZkvQSfz .dropdown-item.active,
.cid-v2aZkvQSfz .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aZkvQSfz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aZkvQSfz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aZkvQSfz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aZkvQSfz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aZkvQSfz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aZkvQSfz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aZkvQSfz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aZkvQSfz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aZkvQSfz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aZkvQSfz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aZkvQSfz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aZkvQSfz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aZkvQSfz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aZkvQSfz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aZkvQSfz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aZkvQSfz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aZkvQSfz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aZkvQSfz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aZkvQSfz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aZkvQSfz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aZkvQSfz .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-v2aZkvQSfz .navbar {
    height: 70px;
  }
  .cid-v2aZkvQSfz .navbar.opened {
    height: auto;
  }
  .cid-v2aZkvQSfz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2hqIa94JV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2hqIa94JV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hqIa94JV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hqIa94JV .row {
    flex-direction: column-reverse;
  }
  .cid-v2hqIa94JV .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hqIa94JV .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hqIa94JV .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hqIa94JV .media-content,
.cid-v2hqIa94JV .mbr-figure {
  align-self: center;
}
.cid-v2hqIa94JV .mbr-figure iframe {
  width: 100%;
}
.cid-v2hqIa94JV .mbr-section-title {
  color: #ffb18a;
}
.cid-v2hqIa94JV .mbr-text,
.cid-v2hqIa94JV .mbr-section-btn {
  color: #ffffff;
}
.cid-v2hqIWVt3v {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2hqIWVt3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hqIWVt3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hqIWVt3v .video-wrapper iframe {
  width: 100%;
}
.cid-v2hqIWVt3v .mbr-section-title,
.cid-v2hqIWVt3v .mbr-section-subtitle,
.cid-v2hqIWVt3v .mbr-text {
  text-align: center;
}
.cid-v2hqKwU5ac {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sCKIkRON {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sCKIkRON img,
.cid-v2sCKIkRON .item-img {
  width: 100%;
}
.cid-v2sCKIkRON .item:focus,
.cid-v2sCKIkRON span:focus {
  outline: none;
}
.cid-v2sCKIkRON .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCKIkRON .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCKIkRON .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sCKIkRON .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCKIkRON .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sCKIkRON .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sCKIkRON .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCKIkRON .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCKIkRON .mbr-text,
.cid-v2sCKIkRON .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCKIkRON .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCKIkRON .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCKIkRON .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sCLsK3WJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCLsK3WJ img,
.cid-v2sCLsK3WJ .item-img {
  width: 100%;
}
.cid-v2sCLsK3WJ .item:focus,
.cid-v2sCLsK3WJ span:focus {
  outline: none;
}
.cid-v2sCLsK3WJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCLsK3WJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCLsK3WJ .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCLsK3WJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCLsK3WJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCLsK3WJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCLsK3WJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCLsK3WJ .mbr-section-title {
  color: #232323;
}
.cid-v2sCLsK3WJ .mbr-text,
.cid-v2sCLsK3WJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCLsK3WJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCLsK3WJ .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCLsK3WJ .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sCMgxDjy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCMgxDjy img,
.cid-v2sCMgxDjy .item-img {
  width: 100%;
}
.cid-v2sCMgxDjy .item:focus,
.cid-v2sCMgxDjy span:focus {
  outline: none;
}
.cid-v2sCMgxDjy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCMgxDjy .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCMgxDjy .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCMgxDjy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCMgxDjy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCMgxDjy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCMgxDjy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCMgxDjy .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCMgxDjy .mbr-text,
.cid-v2sCMgxDjy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCMgxDjy .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCMgxDjy .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCMgxDjy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sCMR0RZb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCMR0RZb img,
.cid-v2sCMR0RZb .item-img {
  width: 100%;
}
.cid-v2sCMR0RZb .item:focus,
.cid-v2sCMR0RZb span:focus {
  outline: none;
}
.cid-v2sCMR0RZb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCMR0RZb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCMR0RZb .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCMR0RZb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCMR0RZb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCMR0RZb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCMR0RZb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCMR0RZb .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCMR0RZb .mbr-text,
.cid-v2sCMR0RZb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCMR0RZb .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCMR0RZb .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCMR0RZb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sCNth0OQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCNth0OQ img,
.cid-v2sCNth0OQ .item-img {
  width: 100%;
}
.cid-v2sCNth0OQ .item:focus,
.cid-v2sCNth0OQ span:focus {
  outline: none;
}
.cid-v2sCNth0OQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCNth0OQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sCNth0OQ .item {
  padding: 0;
  margin: 0;
}
.cid-v2sCNth0OQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCNth0OQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCNth0OQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sCNth0OQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCNth0OQ .mbr-section-title {
  color: #ffffff;
}
.cid-v2sCNth0OQ .mbr-text,
.cid-v2sCNth0OQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCNth0OQ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sCNth0OQ .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sCNth0OQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hqPqTWw3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2hqUvFFkA {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2hqUvFFkA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hqUvFFkA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hqUvFFkA .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2hqUvFFkA .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2hqUvFFkA .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2hqUvFFkA .card {
    margin-bottom: 2rem;
  }
  .cid-v2hqUvFFkA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sCPTlZTm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sCPTlZTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sCPTlZTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sCPTlZTm .mbr-section-title {
  color: #000000;
}
.cid-v2sCQTRBtQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sCQTRBtQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sCQTRBtQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sCQTRBtQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sCQTRBtQ .row {
  flex-direction: row-reverse;
}
.cid-v2sCQTRBtQ img {
  width: 100%;
}
.cid-v2sCRQ9ClK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2hqVBvXPt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2hqVBvXPt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hqVBvXPt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hqVBvXPt .row {
    flex-direction: column-reverse;
  }
  .cid-v2hqVBvXPt .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hqVBvXPt .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hqVBvXPt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hqVBvXPt .media-content,
.cid-v2hqVBvXPt .mbr-figure {
  align-self: center;
}
.cid-v2hqVBvXPt .mbr-figure iframe {
  width: 100%;
}
.cid-v2hqVBvXPt .mbr-section-title {
  color: #ffb18a;
}
.cid-v2hqVBvXPt .mbr-text,
.cid-v2hqVBvXPt .mbr-section-btn {
  color: #ffffff;
}
.cid-v2hqWfm1MI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2hqWfm1MI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hqWfm1MI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hqWfm1MI .row {
    flex-direction: column-reverse;
  }
  .cid-v2hqWfm1MI .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hqWfm1MI .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hqWfm1MI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hqWfm1MI .media-content,
.cid-v2hqWfm1MI .mbr-figure {
  align-self: center;
}
.cid-v2hqWfm1MI .mbr-figure iframe {
  width: 100%;
}
.cid-v2hqWfm1MI .mbr-section-title {
  color: #232323;
}
.cid-v2hqWfm1MI .mbr-text,
.cid-v2hqWfm1MI .mbr-section-btn {
  color: #000000;
}
.cid-v2hqWILBli {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2hqWILBli .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hqWILBli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2hqWILBli .container {
    max-width: 1400px;
  }
}
.cid-v2hqWILBli .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2hqWILBli .card-wrapper {
  margin-top: 3rem;
}
.cid-v2hqWILBli .row {
  justify-content: center;
}
.cid-v2hqWILBli .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2hqWILBli .card-title,
.cid-v2hqWILBli .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2hqWILBli .mbr-section-title {
  color: #ffffff;
}
.cid-v2hqWILBli .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hqXbPEpo {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sCUoE2hJ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sCUoE2hJ img,
.cid-v2sCUoE2hJ .item-img {
  width: 100%;
}
.cid-v2sCUoE2hJ .item:focus,
.cid-v2sCUoE2hJ span:focus {
  outline: none;
}
.cid-v2sCUoE2hJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sCUoE2hJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sCUoE2hJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sCUoE2hJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sCUoE2hJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sCUoE2hJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sCUoE2hJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sCUoE2hJ .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sCUoE2hJ .mbr-text,
.cid-v2sCUoE2hJ .mbr-section-btn {
  text-align: left;
}
.cid-v2sCUoE2hJ .item-title {
  text-align: left;
}
.cid-v2sCUoE2hJ .item-subtitle {
  text-align: left;
}
.cid-v2sCUoE2hJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hqZC4LR2 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2hqZC4LR2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2hqZC4LR2 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2hqZC4LR2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2hqZC4LR2 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2hqZC4LR2 .mbr-section-title {
  color: #ffffff;
}
.cid-v2hqZC4LR2 .card-title {
  color: #ffffff;
}
.cid-v2hqZC4LR2 .mbr-text {
  color: #ffffff;
}
.cid-v2hqZC4LR2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hqZC4LR2 .link {
  color: #44c200;
}
.cid-v2hqZYuutm {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2hqZYuutm p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2hqZYuutm .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2hqZYuutm .collapsed {
  border: none;
}
.cid-v2hqZYuutm .collapsed span {
  transform: rotate(0deg);
}
.cid-v2hqZYuutm span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2hqZYuutm .panel-body {
  padding-top: 0.5rem;
}
.cid-v2hqZYuutm .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2hqZYuutm .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2hqZYuutm .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2hqZYuutm .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2hqZYuutm .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2hqZYuutm .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2hqZYuutm .panel-text {
  color: #ffffff;
}
.cid-v2hqZYuutm H4 {
  color: #ffffff;
}
.cid-v2hqZYuutm H2 {
  color: #ffffff;
}
.cid-v2hqZYuutm .mbr-section-text {
  color: #ffffff;
}
.cid-v2hqZYuutm H3 {
  color: #ffffff;
}
.cid-v2hr0lYjZV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2hr0lYjZV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2hr0lYjZV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2hr0lYjZV .row {
    text-align: center;
  }
  .cid-v2hr0lYjZV .social-row {
    justify-content: center;
  }
}
.cid-v2hr0lYjZV .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2hr0lYjZV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2hr0lYjZV .list {
    margin-bottom: 0rem;
  }
}
.cid-v2hr0lYjZV .mbr-text {
  color: #fafafa;
}
.cid-v2hr0lYjZV .mbr-iconfont {
  color: black;
}
.cid-v2hr0lYjZV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aZGTD2hz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aZGTD2hz nav.navbar {
  position: fixed;
}
.cid-v2aZGTD2hz .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-v2aZGTD2hz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aZGTD2hz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aZGTD2hz .dropdown-item:hover,
.cid-v2aZGTD2hz .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aZGTD2hz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aZGTD2hz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aZGTD2hz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aZGTD2hz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aZGTD2hz .nav-link {
  position: relative;
}
.cid-v2aZGTD2hz .container {
  display: flex;
  margin: auto;
}
.cid-v2aZGTD2hz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aZGTD2hz .dropdown-menu,
.cid-v2aZGTD2hz .navbar.opened {
  background: #353535 !important;
}
.cid-v2aZGTD2hz .nav-item:focus,
.cid-v2aZGTD2hz .nav-link:focus {
  outline: none;
}
.cid-v2aZGTD2hz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aZGTD2hz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aZGTD2hz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aZGTD2hz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aZGTD2hz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aZGTD2hz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aZGTD2hz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aZGTD2hz .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aZGTD2hz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aZGTD2hz .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aZGTD2hz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aZGTD2hz .navbar.collapsed {
  justify-content: center;
}
.cid-v2aZGTD2hz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aZGTD2hz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aZGTD2hz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aZGTD2hz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aZGTD2hz .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-v2aZGTD2hz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aZGTD2hz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aZGTD2hz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aZGTD2hz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aZGTD2hz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aZGTD2hz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aZGTD2hz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aZGTD2hz .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-v2aZGTD2hz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aZGTD2hz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aZGTD2hz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aZGTD2hz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aZGTD2hz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aZGTD2hz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aZGTD2hz .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aZGTD2hz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aZGTD2hz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aZGTD2hz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aZGTD2hz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aZGTD2hz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aZGTD2hz .dropdown-item.active,
.cid-v2aZGTD2hz .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aZGTD2hz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aZGTD2hz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aZGTD2hz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aZGTD2hz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aZGTD2hz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aZGTD2hz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aZGTD2hz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aZGTD2hz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aZGTD2hz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aZGTD2hz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aZGTD2hz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aZGTD2hz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aZGTD2hz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aZGTD2hz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aZGTD2hz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aZGTD2hz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aZGTD2hz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aZGTD2hz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aZGTD2hz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aZGTD2hz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aZGTD2hz .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-v2aZGTD2hz .navbar {
    height: 70px;
  }
  .cid-v2aZGTD2hz .navbar.opened {
    height: auto;
  }
  .cid-v2aZGTD2hz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2kMHdbB7m {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2kMHdbB7m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kMHdbB7m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2kMHdbB7m .row {
    flex-direction: column-reverse;
  }
  .cid-v2kMHdbB7m .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2kMHdbB7m .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2kMHdbB7m .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2kMHdbB7m .media-content,
.cid-v2kMHdbB7m .mbr-figure {
  align-self: center;
}
.cid-v2kMHdbB7m .mbr-figure iframe {
  width: 100%;
}
.cid-v2kMHdbB7m .mbr-section-title {
  color: #ffb18a;
}
.cid-v2kMHdbB7m .mbr-text,
.cid-v2kMHdbB7m .mbr-section-btn {
  color: #ffffff;
}
.cid-v2kMIycc17 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2kMIycc17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kMIycc17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2kMIycc17 .video-wrapper iframe {
  width: 100%;
}
.cid-v2kMIycc17 .mbr-section-title,
.cid-v2kMIycc17 .mbr-section-subtitle,
.cid-v2kMIycc17 .mbr-text {
  text-align: center;
}
.cid-v2kMJe8lU7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2kMJe8lU7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kMJe8lU7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2kMJe8lU7 .video-wrapper iframe {
  width: 100%;
}
.cid-v2kMJe8lU7 .mbr-section-title,
.cid-v2kMJe8lU7 .mbr-section-subtitle,
.cid-v2kMJe8lU7 .mbr-text {
  text-align: center;
}
.cid-v2l21jBsiu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2l21jBsiu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l21jBsiu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2l21jBsiu .video-wrapper iframe {
  width: 100%;
}
.cid-v2l21jBsiu .mbr-section-title,
.cid-v2l21jBsiu .mbr-section-subtitle,
.cid-v2l21jBsiu .mbr-text {
  text-align: center;
}
.cid-v2kMKIW713 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sDrIGIhW {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sDrIGIhW img,
.cid-v2sDrIGIhW .item-img {
  width: 100%;
}
.cid-v2sDrIGIhW .item:focus,
.cid-v2sDrIGIhW span:focus {
  outline: none;
}
.cid-v2sDrIGIhW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sDrIGIhW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sDrIGIhW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sDrIGIhW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sDrIGIhW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sDrIGIhW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sDrIGIhW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sDrIGIhW .mbr-section-title {
  color: #ffffff;
}
.cid-v2sDrIGIhW .mbr-text,
.cid-v2sDrIGIhW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDrIGIhW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDrIGIhW .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sDrIGIhW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sDsMOdPi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sDsMOdPi img,
.cid-v2sDsMOdPi .item-img {
  width: 100%;
}
.cid-v2sDsMOdPi .item:focus,
.cid-v2sDsMOdPi span:focus {
  outline: none;
}
.cid-v2sDsMOdPi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sDsMOdPi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sDsMOdPi .item {
  padding: 0;
  margin: 0;
}
.cid-v2sDsMOdPi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sDsMOdPi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sDsMOdPi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sDsMOdPi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sDsMOdPi .mbr-section-title {
  color: #232323;
}
.cid-v2sDsMOdPi .mbr-text,
.cid-v2sDsMOdPi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDsMOdPi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDsMOdPi .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sDsMOdPi .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sDv6rfJP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sDv6rfJP img,
.cid-v2sDv6rfJP .item-img {
  width: 100%;
}
.cid-v2sDv6rfJP .item:focus,
.cid-v2sDv6rfJP span:focus {
  outline: none;
}
.cid-v2sDv6rfJP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sDv6rfJP .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sDv6rfJP .item {
  padding: 0;
  margin: 0;
}
.cid-v2sDv6rfJP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sDv6rfJP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sDv6rfJP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sDv6rfJP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sDv6rfJP .mbr-section-title {
  color: #ffffff;
}
.cid-v2sDv6rfJP .mbr-text,
.cid-v2sDv6rfJP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDv6rfJP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDv6rfJP .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sDv6rfJP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sDwEywyx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sDwEywyx img,
.cid-v2sDwEywyx .item-img {
  width: 100%;
}
.cid-v2sDwEywyx .item:focus,
.cid-v2sDwEywyx span:focus {
  outline: none;
}
.cid-v2sDwEywyx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sDwEywyx .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sDwEywyx .item {
  padding: 0;
  margin: 0;
}
.cid-v2sDwEywyx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sDwEywyx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sDwEywyx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sDwEywyx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sDwEywyx .mbr-section-title {
  color: #ffffff;
}
.cid-v2sDwEywyx .mbr-text,
.cid-v2sDwEywyx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDwEywyx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDwEywyx .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sDwEywyx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sDxtCI1l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sDxtCI1l img,
.cid-v2sDxtCI1l .item-img {
  width: 100%;
}
.cid-v2sDxtCI1l .item:focus,
.cid-v2sDxtCI1l span:focus {
  outline: none;
}
.cid-v2sDxtCI1l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sDxtCI1l .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sDxtCI1l .item {
  padding: 0;
  margin: 0;
}
.cid-v2sDxtCI1l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sDxtCI1l .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sDxtCI1l .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sDxtCI1l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sDxtCI1l .mbr-section-title {
  color: #ffffff;
}
.cid-v2sDxtCI1l .mbr-text,
.cid-v2sDxtCI1l .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDxtCI1l .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sDxtCI1l .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sDxtCI1l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2kMRrHhBf {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2kMV1ZPD2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2kMV1ZPD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kMV1ZPD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2kMV1ZPD2 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2kMV1ZPD2 .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2kMV1ZPD2 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2kMV1ZPD2 .card {
    margin-bottom: 2rem;
  }
  .cid-v2kMV1ZPD2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sDBbEZQT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sDBbEZQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sDBbEZQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sDBbEZQT .mbr-section-title {
  color: #000000;
}
.cid-v2sDBQWyJ3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sDBQWyJ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sDBQWyJ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sDBQWyJ3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sDBQWyJ3 .row {
  flex-direction: row-reverse;
}
.cid-v2sDBQWyJ3 img {
  width: 100%;
}
.cid-v2sDCh0Hcm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2kMVWoSLC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2kMVWoSLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kMVWoSLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2kMVWoSLC .row {
    flex-direction: column-reverse;
  }
  .cid-v2kMVWoSLC .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2kMVWoSLC .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2kMVWoSLC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2kMVWoSLC .media-content,
.cid-v2kMVWoSLC .mbr-figure {
  align-self: center;
}
.cid-v2kMVWoSLC .mbr-figure iframe {
  width: 100%;
}
.cid-v2kMVWoSLC .mbr-section-title {
  color: #ffb18a;
}
.cid-v2kMVWoSLC .mbr-text,
.cid-v2kMVWoSLC .mbr-section-btn {
  color: #ffffff;
}
.cid-v2kMWPbRiY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2kMWPbRiY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kMWPbRiY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2kMWPbRiY .row {
    flex-direction: column-reverse;
  }
  .cid-v2kMWPbRiY .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2kMWPbRiY .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2kMWPbRiY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2kMWPbRiY .media-content,
.cid-v2kMWPbRiY .mbr-figure {
  align-self: center;
}
.cid-v2kMWPbRiY .mbr-figure iframe {
  width: 100%;
}
.cid-v2kMWPbRiY .mbr-section-title {
  color: #232323;
}
.cid-v2kMWPbRiY .mbr-text,
.cid-v2kMWPbRiY .mbr-section-btn {
  color: #000000;
}
.cid-v2rnxzIXMu {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rnxzIXMu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rnxzIXMu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rnxzIXMu .mbr-text {
  color: #767676;
}
.cid-v2rnxzIXMu .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rnxzIXMu .title .num {
  width: 100%;
  display: block;
}
.cid-v2rnxzIXMu .title .card-title {
  z-index: 1;
}
.cid-v2rnxzIXMu .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rnxzIXMu * {
    text-align: center !important;
  }
  .cid-v2rnxzIXMu .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rnxzIXMu .card-title,
.cid-v2rnxzIXMu .card-img {
  color: #ffffff;
}
.cid-v2rnxzIXMu .mbr-section-title,
.cid-v2rnxzIXMu .card-box {
  color: #ffffff;
}
.cid-v2rnxzIXMu .mbr-text,
.cid-v2rnxzIXMu .mbr-section-btn {
  color: #ffffff;
}
.cid-v2kN6zdMS6 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2kN6zdMS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2kN6zdMS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2kN6zdMS6 .container {
    max-width: 1400px;
  }
}
.cid-v2kN6zdMS6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2kN6zdMS6 .card-wrapper {
  margin-top: 3rem;
}
.cid-v2kN6zdMS6 .row {
  justify-content: center;
}
.cid-v2kN6zdMS6 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2kN6zdMS6 .card-title,
.cid-v2kN6zdMS6 .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2kN6zdMS6 .mbr-section-title {
  color: #ffffff;
}
.cid-v2kN6zdMS6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2kN7k9M9x {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sDzpvo8Y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sDzpvo8Y img,
.cid-v2sDzpvo8Y .item-img {
  width: 100%;
}
.cid-v2sDzpvo8Y .item:focus,
.cid-v2sDzpvo8Y span:focus {
  outline: none;
}
.cid-v2sDzpvo8Y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sDzpvo8Y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sDzpvo8Y .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sDzpvo8Y .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sDzpvo8Y .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sDzpvo8Y .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sDzpvo8Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sDzpvo8Y .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sDzpvo8Y .mbr-text,
.cid-v2sDzpvo8Y .mbr-section-btn {
  text-align: left;
}
.cid-v2sDzpvo8Y .item-title {
  text-align: left;
}
.cid-v2sDzpvo8Y .item-subtitle {
  text-align: left;
}
.cid-v2sDzpvo8Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2kN83YdJX {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2kN83YdJX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2kN83YdJX .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2kN83YdJX .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2kN83YdJX .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2kN83YdJX .mbr-section-title {
  color: #ffffff;
}
.cid-v2kN83YdJX .card-title {
  color: #ffffff;
}
.cid-v2kN83YdJX .mbr-text {
  color: #ffffff;
}
.cid-v2kN83YdJX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2kN83YdJX .link {
  color: #44c200;
}
.cid-v2kNmIAhkJ {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2kNmIAhkJ p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2kNmIAhkJ .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2kNmIAhkJ .collapsed {
  border: none;
}
.cid-v2kNmIAhkJ .collapsed span {
  transform: rotate(0deg);
}
.cid-v2kNmIAhkJ span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2kNmIAhkJ .panel-body {
  padding-top: 0.5rem;
}
.cid-v2kNmIAhkJ .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2kNmIAhkJ .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2kNmIAhkJ .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2kNmIAhkJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2kNmIAhkJ .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2kNmIAhkJ .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2kNmIAhkJ .panel-text {
  color: #ffffff;
}
.cid-v2kNmIAhkJ H4 {
  color: #ffffff;
}
.cid-v2kNmIAhkJ H2 {
  color: #ffffff;
}
.cid-v2kNmIAhkJ .mbr-section-text {
  color: #ffffff;
}
.cid-v2kNmIAhkJ H3 {
  color: #ffffff;
}
.cid-v2kNneiPZN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2kNneiPZN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2kNneiPZN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2kNneiPZN .row {
    text-align: center;
  }
  .cid-v2kNneiPZN .social-row {
    justify-content: center;
  }
}
.cid-v2kNneiPZN .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2kNneiPZN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2kNneiPZN .list {
    margin-bottom: 0rem;
  }
}
.cid-v2kNneiPZN .mbr-text {
  color: #fafafa;
}
.cid-v2kNneiPZN .mbr-iconfont {
  color: black;
}
.cid-v2kNneiPZN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2b02vhOq3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2b02vhOq3 nav.navbar {
  position: fixed;
}
.cid-v2b02vhOq3 .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-v2b02vhOq3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2b02vhOq3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2b02vhOq3 .dropdown-item:hover,
.cid-v2b02vhOq3 .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2b02vhOq3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2b02vhOq3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2b02vhOq3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2b02vhOq3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2b02vhOq3 .nav-link {
  position: relative;
}
.cid-v2b02vhOq3 .container {
  display: flex;
  margin: auto;
}
.cid-v2b02vhOq3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2b02vhOq3 .dropdown-menu,
.cid-v2b02vhOq3 .navbar.opened {
  background: #353535 !important;
}
.cid-v2b02vhOq3 .nav-item:focus,
.cid-v2b02vhOq3 .nav-link:focus {
  outline: none;
}
.cid-v2b02vhOq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2b02vhOq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2b02vhOq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2b02vhOq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2b02vhOq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2b02vhOq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2b02vhOq3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2b02vhOq3 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2b02vhOq3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2b02vhOq3 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2b02vhOq3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2b02vhOq3 .navbar.collapsed {
  justify-content: center;
}
.cid-v2b02vhOq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2b02vhOq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2b02vhOq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2b02vhOq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2b02vhOq3 .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-v2b02vhOq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2b02vhOq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2b02vhOq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2b02vhOq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2b02vhOq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2b02vhOq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2b02vhOq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2b02vhOq3 .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-v2b02vhOq3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2b02vhOq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2b02vhOq3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2b02vhOq3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2b02vhOq3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2b02vhOq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2b02vhOq3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2b02vhOq3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2b02vhOq3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2b02vhOq3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2b02vhOq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2b02vhOq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2b02vhOq3 .dropdown-item.active,
.cid-v2b02vhOq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2b02vhOq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2b02vhOq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2b02vhOq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2b02vhOq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2b02vhOq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2b02vhOq3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2b02vhOq3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2b02vhOq3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2b02vhOq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2b02vhOq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2b02vhOq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2b02vhOq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2b02vhOq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2b02vhOq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2b02vhOq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2b02vhOq3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2b02vhOq3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2b02vhOq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2b02vhOq3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2b02vhOq3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2b02vhOq3 .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-v2b02vhOq3 .navbar {
    height: 70px;
  }
  .cid-v2b02vhOq3 .navbar.opened {
    height: auto;
  }
  .cid-v2b02vhOq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2l2RywEPd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2l2RywEPd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l2RywEPd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2l2RywEPd .row {
    flex-direction: column-reverse;
  }
  .cid-v2l2RywEPd .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2l2RywEPd .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2l2RywEPd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2l2RywEPd .media-content,
.cid-v2l2RywEPd .mbr-figure {
  align-self: center;
}
.cid-v2l2RywEPd .mbr-figure iframe {
  width: 100%;
}
.cid-v2l2RywEPd .mbr-section-title {
  color: #ffb18a;
}
.cid-v2l2RywEPd .mbr-text,
.cid-v2l2RywEPd .mbr-section-btn {
  color: #ffffff;
}
.cid-v2l2Tn9DAD {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2l2Tn9DAD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l2Tn9DAD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2l2Tn9DAD .video-wrapper iframe {
  width: 100%;
}
.cid-v2l2Tn9DAD .mbr-section-title,
.cid-v2l2Tn9DAD .mbr-section-subtitle,
.cid-v2l2Tn9DAD .mbr-text {
  text-align: center;
}
.cid-v2l2TR5PbH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2l2TR5PbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l2TR5PbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2l2TR5PbH .video-wrapper iframe {
  width: 100%;
}
.cid-v2l2TR5PbH .mbr-section-title,
.cid-v2l2TR5PbH .mbr-section-subtitle,
.cid-v2l2TR5PbH .mbr-text {
  text-align: center;
}
.cid-v2l2USU4ab {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sEbVfmr8 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sEbVfmr8 img,
.cid-v2sEbVfmr8 .item-img {
  width: 100%;
}
.cid-v2sEbVfmr8 .item:focus,
.cid-v2sEbVfmr8 span:focus {
  outline: none;
}
.cid-v2sEbVfmr8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sEbVfmr8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sEbVfmr8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sEbVfmr8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEbVfmr8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sEbVfmr8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sEbVfmr8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sEbVfmr8 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sEbVfmr8 .mbr-text,
.cid-v2sEbVfmr8 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEbVfmr8 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEbVfmr8 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sEbVfmr8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sE7MgO4o {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sE7MgO4o img,
.cid-v2sE7MgO4o .item-img {
  width: 100%;
}
.cid-v2sE7MgO4o .item:focus,
.cid-v2sE7MgO4o span:focus {
  outline: none;
}
.cid-v2sE7MgO4o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sE7MgO4o .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sE7MgO4o .item {
  padding: 0;
  margin: 0;
}
.cid-v2sE7MgO4o .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sE7MgO4o .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sE7MgO4o .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sE7MgO4o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sE7MgO4o .mbr-section-title {
  color: #232323;
}
.cid-v2sE7MgO4o .mbr-text,
.cid-v2sE7MgO4o .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sE7MgO4o .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sE7MgO4o .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sE7MgO4o .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sE9MCWj2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sE9MCWj2 img,
.cid-v2sE9MCWj2 .item-img {
  width: 100%;
}
.cid-v2sE9MCWj2 .item:focus,
.cid-v2sE9MCWj2 span:focus {
  outline: none;
}
.cid-v2sE9MCWj2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sE9MCWj2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sE9MCWj2 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sE9MCWj2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sE9MCWj2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sE9MCWj2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sE9MCWj2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sE9MCWj2 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sE9MCWj2 .mbr-text,
.cid-v2sE9MCWj2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sE9MCWj2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sE9MCWj2 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sE9MCWj2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sE8O3Pj2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sE8O3Pj2 img,
.cid-v2sE8O3Pj2 .item-img {
  width: 100%;
}
.cid-v2sE8O3Pj2 .item:focus,
.cid-v2sE8O3Pj2 span:focus {
  outline: none;
}
.cid-v2sE8O3Pj2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sE8O3Pj2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sE8O3Pj2 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sE8O3Pj2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sE8O3Pj2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sE8O3Pj2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sE8O3Pj2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sE8O3Pj2 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sE8O3Pj2 .mbr-text,
.cid-v2sE8O3Pj2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sE8O3Pj2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sE8O3Pj2 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sE8O3Pj2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sEaweaPU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sEaweaPU img,
.cid-v2sEaweaPU .item-img {
  width: 100%;
}
.cid-v2sEaweaPU .item:focus,
.cid-v2sEaweaPU span:focus {
  outline: none;
}
.cid-v2sEaweaPU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sEaweaPU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sEaweaPU .item {
  padding: 0;
  margin: 0;
}
.cid-v2sEaweaPU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sEaweaPU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sEaweaPU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sEaweaPU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sEaweaPU .mbr-section-title {
  color: #ffffff;
}
.cid-v2sEaweaPU .mbr-text,
.cid-v2sEaweaPU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEaweaPU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sEaweaPU .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sEaweaPU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2l2ZBEBSO {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2l31UftjA {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2l31UftjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l31UftjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2l31UftjA .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2l31UftjA .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2l31UftjA .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2l31UftjA .card {
    margin-bottom: 2rem;
  }
  .cid-v2l31UftjA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sE5TvJn0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sE5TvJn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sE5TvJn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sE5TvJn0 .mbr-section-title {
  color: #000000;
}
.cid-v2sE5341Rr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sE5341Rr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sE5341Rr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sE5341Rr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sE5341Rr .row {
  flex-direction: row-reverse;
}
.cid-v2sE5341Rr img {
  width: 100%;
}
.cid-v2sE6mengC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2l32wV9CW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2l32wV9CW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l32wV9CW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2l32wV9CW .row {
    flex-direction: column-reverse;
  }
  .cid-v2l32wV9CW .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2l32wV9CW .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2l32wV9CW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2l32wV9CW .media-content,
.cid-v2l32wV9CW .mbr-figure {
  align-self: center;
}
.cid-v2l32wV9CW .mbr-figure iframe {
  width: 100%;
}
.cid-v2l32wV9CW .mbr-section-title {
  color: #ffb18a;
}
.cid-v2l32wV9CW .mbr-text,
.cid-v2l32wV9CW .mbr-section-btn {
  color: #ffffff;
}
.cid-v2l33yA1eL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2l33yA1eL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l33yA1eL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2l33yA1eL .row {
    flex-direction: column-reverse;
  }
  .cid-v2l33yA1eL .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2l33yA1eL .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2l33yA1eL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2l33yA1eL .media-content,
.cid-v2l33yA1eL .mbr-figure {
  align-self: center;
}
.cid-v2l33yA1eL .mbr-figure iframe {
  width: 100%;
}
.cid-v2l33yA1eL .mbr-section-title {
  color: #232323;
}
.cid-v2l33yA1eL .mbr-text,
.cid-v2l33yA1eL .mbr-section-btn {
  color: #000000;
}
.cid-v2rnH20G7N {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rnH20G7N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rnH20G7N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rnH20G7N .mbr-text {
  color: #767676;
}
.cid-v2rnH20G7N .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rnH20G7N .title .num {
  width: 100%;
  display: block;
}
.cid-v2rnH20G7N .title .card-title {
  z-index: 1;
}
.cid-v2rnH20G7N .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rnH20G7N * {
    text-align: center !important;
  }
  .cid-v2rnH20G7N .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rnH20G7N .card-title,
.cid-v2rnH20G7N .card-img {
  color: #ffffff;
}
.cid-v2rnH20G7N .mbr-section-title,
.cid-v2rnH20G7N .card-box {
  color: #ffffff;
}
.cid-v2rnH20G7N .mbr-text,
.cid-v2rnH20G7N .mbr-section-btn {
  color: #ffffff;
}
.cid-v2l36zcPqj {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2l36zcPqj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2l36zcPqj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2l36zcPqj .container {
    max-width: 1400px;
  }
}
.cid-v2l36zcPqj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2l36zcPqj .card-wrapper {
  margin-top: 3rem;
}
.cid-v2l36zcPqj .row {
  justify-content: center;
}
.cid-v2l36zcPqj .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2l36zcPqj .card-title,
.cid-v2l36zcPqj .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2l36zcPqj .mbr-section-title {
  color: #ffffff;
}
.cid-v2l36zcPqj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2l37szIJJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sE2HCKYB {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sE2HCKYB img,
.cid-v2sE2HCKYB .item-img {
  width: 100%;
}
.cid-v2sE2HCKYB .item:focus,
.cid-v2sE2HCKYB span:focus {
  outline: none;
}
.cid-v2sE2HCKYB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sE2HCKYB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sE2HCKYB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sE2HCKYB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sE2HCKYB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sE2HCKYB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sE2HCKYB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sE2HCKYB .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sE2HCKYB .mbr-text,
.cid-v2sE2HCKYB .mbr-section-btn {
  text-align: left;
}
.cid-v2sE2HCKYB .item-title {
  text-align: left;
}
.cid-v2sE2HCKYB .item-subtitle {
  text-align: left;
}
.cid-v2sE2HCKYB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2l39C78nK {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2l39C78nK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2l39C78nK .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2l39C78nK .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2l39C78nK .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2l39C78nK .mbr-section-title {
  color: #ffffff;
}
.cid-v2l39C78nK .card-title {
  color: #ffffff;
}
.cid-v2l39C78nK .mbr-text {
  color: #ffffff;
}
.cid-v2l39C78nK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2l39C78nK .link {
  color: #44c200;
}
.cid-v2l3alyEkr {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2l3alyEkr p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2l3alyEkr .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2l3alyEkr .collapsed {
  border: none;
}
.cid-v2l3alyEkr .collapsed span {
  transform: rotate(0deg);
}
.cid-v2l3alyEkr span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2l3alyEkr .panel-body {
  padding-top: 0.5rem;
}
.cid-v2l3alyEkr .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2l3alyEkr .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2l3alyEkr .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2l3alyEkr .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2l3alyEkr .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2l3alyEkr .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2l3alyEkr .panel-text {
  color: #ffffff;
}
.cid-v2l3alyEkr H4 {
  color: #ffffff;
}
.cid-v2l3alyEkr H2 {
  color: #ffffff;
}
.cid-v2l3alyEkr .mbr-section-text {
  color: #ffffff;
}
.cid-v2l3alyEkr H3 {
  color: #ffffff;
}
.cid-v2l3aMbONe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2l3aMbONe .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2l3aMbONe .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2l3aMbONe .row {
    text-align: center;
  }
  .cid-v2l3aMbONe .social-row {
    justify-content: center;
  }
}
.cid-v2l3aMbONe .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2l3aMbONe .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2l3aMbONe .list {
    margin-bottom: 0rem;
  }
}
.cid-v2l3aMbONe .mbr-text {
  color: #fafafa;
}
.cid-v2l3aMbONe .mbr-iconfont {
  color: black;
}
.cid-v2l3aMbONe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2b0DEmWvh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2b0DEmWvh nav.navbar {
  position: fixed;
}
.cid-v2b0DEmWvh .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-v2b0DEmWvh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2b0DEmWvh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2b0DEmWvh .dropdown-item:hover,
.cid-v2b0DEmWvh .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2b0DEmWvh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2b0DEmWvh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2b0DEmWvh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2b0DEmWvh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2b0DEmWvh .nav-link {
  position: relative;
}
.cid-v2b0DEmWvh .container {
  display: flex;
  margin: auto;
}
.cid-v2b0DEmWvh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2b0DEmWvh .dropdown-menu,
.cid-v2b0DEmWvh .navbar.opened {
  background: #353535 !important;
}
.cid-v2b0DEmWvh .nav-item:focus,
.cid-v2b0DEmWvh .nav-link:focus {
  outline: none;
}
.cid-v2b0DEmWvh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2b0DEmWvh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2b0DEmWvh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2b0DEmWvh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2b0DEmWvh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2b0DEmWvh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2b0DEmWvh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2b0DEmWvh .navbar.opened {
  transition: all 0.3s;
}
.cid-v2b0DEmWvh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2b0DEmWvh .navbar .navbar-logo img {
  width: auto;
}
.cid-v2b0DEmWvh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2b0DEmWvh .navbar.collapsed {
  justify-content: center;
}
.cid-v2b0DEmWvh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2b0DEmWvh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2b0DEmWvh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2b0DEmWvh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2b0DEmWvh .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-v2b0DEmWvh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2b0DEmWvh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2b0DEmWvh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2b0DEmWvh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2b0DEmWvh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2b0DEmWvh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2b0DEmWvh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2b0DEmWvh .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-v2b0DEmWvh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2b0DEmWvh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2b0DEmWvh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2b0DEmWvh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2b0DEmWvh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2b0DEmWvh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2b0DEmWvh .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2b0DEmWvh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2b0DEmWvh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2b0DEmWvh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2b0DEmWvh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2b0DEmWvh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2b0DEmWvh .dropdown-item.active,
.cid-v2b0DEmWvh .dropdown-item:active {
  background-color: transparent;
}
.cid-v2b0DEmWvh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2b0DEmWvh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2b0DEmWvh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2b0DEmWvh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2b0DEmWvh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2b0DEmWvh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2b0DEmWvh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2b0DEmWvh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2b0DEmWvh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2b0DEmWvh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2b0DEmWvh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2b0DEmWvh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2b0DEmWvh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2b0DEmWvh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2b0DEmWvh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2b0DEmWvh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2b0DEmWvh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2b0DEmWvh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2b0DEmWvh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2b0DEmWvh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2b0DEmWvh .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-v2b0DEmWvh .navbar {
    height: 70px;
  }
  .cid-v2b0DEmWvh .navbar.opened {
    height: auto;
  }
  .cid-v2b0DEmWvh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2m4pQEAll {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2m4pQEAll .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m4pQEAll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2m4pQEAll .row {
    flex-direction: column-reverse;
  }
  .cid-v2m4pQEAll .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2m4pQEAll .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2m4pQEAll .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2m4pQEAll .media-content,
.cid-v2m4pQEAll .mbr-figure {
  align-self: center;
}
.cid-v2m4pQEAll .mbr-figure iframe {
  width: 100%;
}
.cid-v2m4pQEAll .mbr-section-title {
  color: #ffb18a;
}
.cid-v2m4pQEAll .mbr-text,
.cid-v2m4pQEAll .mbr-section-btn {
  color: #ffffff;
}
.cid-v2m4rjij1Q {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2m4rjij1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m4rjij1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m4rjij1Q .video-wrapper iframe {
  width: 100%;
}
.cid-v2m4rjij1Q .mbr-section-title,
.cid-v2m4rjij1Q .mbr-section-subtitle,
.cid-v2m4rjij1Q .mbr-text {
  text-align: center;
}
.cid-v2m6nzXyqT {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sF8UVOCs {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sF8UVOCs img,
.cid-v2sF8UVOCs .item-img {
  width: 100%;
}
.cid-v2sF8UVOCs .item:focus,
.cid-v2sF8UVOCs span:focus {
  outline: none;
}
.cid-v2sF8UVOCs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sF8UVOCs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sF8UVOCs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sF8UVOCs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sF8UVOCs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sF8UVOCs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sF8UVOCs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sF8UVOCs .mbr-section-title {
  color: #ffffff;
}
.cid-v2sF8UVOCs .mbr-text,
.cid-v2sF8UVOCs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sF8UVOCs .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sF8UVOCs .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sF8UVOCs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sF9LeaHC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sF9LeaHC img,
.cid-v2sF9LeaHC .item-img {
  width: 100%;
}
.cid-v2sF9LeaHC .item:focus,
.cid-v2sF9LeaHC span:focus {
  outline: none;
}
.cid-v2sF9LeaHC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sF9LeaHC .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sF9LeaHC .item {
  padding: 0;
  margin: 0;
}
.cid-v2sF9LeaHC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sF9LeaHC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sF9LeaHC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sF9LeaHC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sF9LeaHC .mbr-section-title {
  color: #232323;
}
.cid-v2sF9LeaHC .mbr-text,
.cid-v2sF9LeaHC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sF9LeaHC .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sF9LeaHC .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sF9LeaHC .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sFaJLEdh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFaJLEdh img,
.cid-v2sFaJLEdh .item-img {
  width: 100%;
}
.cid-v2sFaJLEdh .item:focus,
.cid-v2sFaJLEdh span:focus {
  outline: none;
}
.cid-v2sFaJLEdh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFaJLEdh .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFaJLEdh .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFaJLEdh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFaJLEdh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFaJLEdh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFaJLEdh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFaJLEdh .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFaJLEdh .mbr-text,
.cid-v2sFaJLEdh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFaJLEdh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFaJLEdh .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFaJLEdh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sFbvp5fr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFbvp5fr img,
.cid-v2sFbvp5fr .item-img {
  width: 100%;
}
.cid-v2sFbvp5fr .item:focus,
.cid-v2sFbvp5fr span:focus {
  outline: none;
}
.cid-v2sFbvp5fr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFbvp5fr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFbvp5fr .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFbvp5fr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFbvp5fr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFbvp5fr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFbvp5fr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFbvp5fr .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFbvp5fr .mbr-text,
.cid-v2sFbvp5fr .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFbvp5fr .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFbvp5fr .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFbvp5fr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sFcjdlRo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFcjdlRo img,
.cid-v2sFcjdlRo .item-img {
  width: 100%;
}
.cid-v2sFcjdlRo .item:focus,
.cid-v2sFcjdlRo span:focus {
  outline: none;
}
.cid-v2sFcjdlRo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFcjdlRo .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sFcjdlRo .item {
  padding: 0;
  margin: 0;
}
.cid-v2sFcjdlRo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFcjdlRo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFcjdlRo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sFcjdlRo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFcjdlRo .mbr-section-title {
  color: #ffffff;
}
.cid-v2sFcjdlRo .mbr-text,
.cid-v2sFcjdlRo .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFcjdlRo .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sFcjdlRo .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sFcjdlRo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m4vW4KVr {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2m4x4fkYs {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2m4x4fkYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m4x4fkYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2m4x4fkYs .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2m4x4fkYs .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2m4x4fkYs .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2m4x4fkYs .card {
    margin-bottom: 2rem;
  }
  .cid-v2m4x4fkYs .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sFBt50Qm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sFBt50Qm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sFBt50Qm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sFBt50Qm .mbr-section-title {
  color: #000000;
}
.cid-v2sFC21tIf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sFC21tIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sFC21tIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sFC21tIf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sFC21tIf .row {
  flex-direction: row-reverse;
}
.cid-v2sFC21tIf img {
  width: 100%;
}
.cid-v2sFCHBN9V {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2m4xxu4OY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2m4xxu4OY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m4xxu4OY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2m4xxu4OY .row {
    flex-direction: column-reverse;
  }
  .cid-v2m4xxu4OY .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2m4xxu4OY .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2m4xxu4OY .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2m4xxu4OY .media-content,
.cid-v2m4xxu4OY .mbr-figure {
  align-self: center;
}
.cid-v2m4xxu4OY .mbr-figure iframe {
  width: 100%;
}
.cid-v2m4xxu4OY .mbr-section-title {
  color: #ffb18a;
}
.cid-v2m4xxu4OY .mbr-text,
.cid-v2m4xxu4OY .mbr-section-btn {
  color: #ffffff;
}
.cid-v2m4ygWG6h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2m4ygWG6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m4ygWG6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2m4ygWG6h .row {
    flex-direction: column-reverse;
  }
  .cid-v2m4ygWG6h .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2m4ygWG6h .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2m4ygWG6h .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2m4ygWG6h .media-content,
.cid-v2m4ygWG6h .mbr-figure {
  align-self: center;
}
.cid-v2m4ygWG6h .mbr-figure iframe {
  width: 100%;
}
.cid-v2m4ygWG6h .mbr-section-title {
  color: #232323;
}
.cid-v2m4ygWG6h .mbr-text,
.cid-v2m4ygWG6h .mbr-section-btn {
  color: #000000;
}
.cid-v2rq9m2o4B {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rq9m2o4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rq9m2o4B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rq9m2o4B .mbr-text {
  color: #767676;
}
.cid-v2rq9m2o4B .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rq9m2o4B .title .num {
  width: 100%;
  display: block;
}
.cid-v2rq9m2o4B .title .card-title {
  z-index: 1;
}
.cid-v2rq9m2o4B .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rq9m2o4B * {
    text-align: center !important;
  }
  .cid-v2rq9m2o4B .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rq9m2o4B .card-title,
.cid-v2rq9m2o4B .card-img {
  color: #ffffff;
}
.cid-v2rq9m2o4B .mbr-section-title,
.cid-v2rq9m2o4B .card-box {
  color: #ffffff;
}
.cid-v2rq9m2o4B .mbr-text,
.cid-v2rq9m2o4B .mbr-section-btn {
  color: #ffffff;
}
.cid-v2m4yQAJVA {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2m4yQAJVA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2m4yQAJVA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2m4yQAJVA .container {
    max-width: 1400px;
  }
}
.cid-v2m4yQAJVA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2m4yQAJVA .card-wrapper {
  margin-top: 3rem;
}
.cid-v2m4yQAJVA .row {
  justify-content: center;
}
.cid-v2m4yQAJVA .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2m4yQAJVA .card-title,
.cid-v2m4yQAJVA .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2m4yQAJVA .mbr-section-title {
  color: #ffffff;
}
.cid-v2m4yQAJVA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m4zkiJj8 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sFtMzvMk {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sFtMzvMk img,
.cid-v2sFtMzvMk .item-img {
  width: 100%;
}
.cid-v2sFtMzvMk .item:focus,
.cid-v2sFtMzvMk span:focus {
  outline: none;
}
.cid-v2sFtMzvMk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sFtMzvMk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sFtMzvMk .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sFtMzvMk .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sFtMzvMk .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sFtMzvMk .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sFtMzvMk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sFtMzvMk .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sFtMzvMk .mbr-text,
.cid-v2sFtMzvMk .mbr-section-btn {
  text-align: left;
}
.cid-v2sFtMzvMk .item-title {
  text-align: left;
}
.cid-v2sFtMzvMk .item-subtitle {
  text-align: left;
}
.cid-v2sFtMzvMk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m4AIIXC3 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2m4AIIXC3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2m4AIIXC3 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2m4AIIXC3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2m4AIIXC3 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2m4AIIXC3 .mbr-section-title {
  color: #ffffff;
}
.cid-v2m4AIIXC3 .card-title {
  color: #ffffff;
}
.cid-v2m4AIIXC3 .mbr-text {
  color: #ffffff;
}
.cid-v2m4AIIXC3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2m4AIIXC3 .link {
  color: #44c200;
}
.cid-v2m4Biilgs {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2m4Biilgs p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2m4Biilgs .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2m4Biilgs .collapsed {
  border: none;
}
.cid-v2m4Biilgs .collapsed span {
  transform: rotate(0deg);
}
.cid-v2m4Biilgs span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2m4Biilgs .panel-body {
  padding-top: 0.5rem;
}
.cid-v2m4Biilgs .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2m4Biilgs .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2m4Biilgs .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2m4Biilgs .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2m4Biilgs .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2m4Biilgs .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2m4Biilgs .panel-text {
  color: #ffffff;
}
.cid-v2m4Biilgs H4 {
  color: #ffffff;
}
.cid-v2m4Biilgs H2 {
  color: #ffffff;
}
.cid-v2m4Biilgs .mbr-section-text {
  color: #ffffff;
}
.cid-v2m4Biilgs H3 {
  color: #ffffff;
}
.cid-v2m4BHEzxe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2m4BHEzxe .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2m4BHEzxe .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2m4BHEzxe .row {
    text-align: center;
  }
  .cid-v2m4BHEzxe .social-row {
    justify-content: center;
  }
}
.cid-v2m4BHEzxe .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2m4BHEzxe .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2m4BHEzxe .list {
    margin-bottom: 0rem;
  }
}
.cid-v2m4BHEzxe .mbr-text {
  color: #fafafa;
}
.cid-v2m4BHEzxe .mbr-iconfont {
  color: black;
}
.cid-v2m4BHEzxe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2b13rnBeX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2b13rnBeX nav.navbar {
  position: fixed;
}
.cid-v2b13rnBeX .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-v2b13rnBeX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2b13rnBeX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2b13rnBeX .dropdown-item:hover,
.cid-v2b13rnBeX .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2b13rnBeX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2b13rnBeX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2b13rnBeX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2b13rnBeX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2b13rnBeX .nav-link {
  position: relative;
}
.cid-v2b13rnBeX .container {
  display: flex;
  margin: auto;
}
.cid-v2b13rnBeX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2b13rnBeX .dropdown-menu,
.cid-v2b13rnBeX .navbar.opened {
  background: #353535 !important;
}
.cid-v2b13rnBeX .nav-item:focus,
.cid-v2b13rnBeX .nav-link:focus {
  outline: none;
}
.cid-v2b13rnBeX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2b13rnBeX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2b13rnBeX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2b13rnBeX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2b13rnBeX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2b13rnBeX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2b13rnBeX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2b13rnBeX .navbar.opened {
  transition: all 0.3s;
}
.cid-v2b13rnBeX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2b13rnBeX .navbar .navbar-logo img {
  width: auto;
}
.cid-v2b13rnBeX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2b13rnBeX .navbar.collapsed {
  justify-content: center;
}
.cid-v2b13rnBeX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2b13rnBeX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2b13rnBeX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2b13rnBeX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2b13rnBeX .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-v2b13rnBeX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2b13rnBeX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2b13rnBeX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2b13rnBeX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2b13rnBeX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2b13rnBeX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2b13rnBeX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2b13rnBeX .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-v2b13rnBeX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2b13rnBeX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2b13rnBeX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2b13rnBeX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2b13rnBeX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2b13rnBeX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2b13rnBeX .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2b13rnBeX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2b13rnBeX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2b13rnBeX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2b13rnBeX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2b13rnBeX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2b13rnBeX .dropdown-item.active,
.cid-v2b13rnBeX .dropdown-item:active {
  background-color: transparent;
}
.cid-v2b13rnBeX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2b13rnBeX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2b13rnBeX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2b13rnBeX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2b13rnBeX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2b13rnBeX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2b13rnBeX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2b13rnBeX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2b13rnBeX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2b13rnBeX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2b13rnBeX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2b13rnBeX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2b13rnBeX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2b13rnBeX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2b13rnBeX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2b13rnBeX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2b13rnBeX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2b13rnBeX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2b13rnBeX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2b13rnBeX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2b13rnBeX .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-v2b13rnBeX .navbar {
    height: 70px;
  }
  .cid-v2b13rnBeX .navbar.opened {
    height: auto;
  }
  .cid-v2b13rnBeX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2mkWXArgF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mkWXArgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mkWXArgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mkWXArgF .row {
    flex-direction: column-reverse;
  }
  .cid-v2mkWXArgF .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mkWXArgF .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mkWXArgF .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mkWXArgF .media-content,
.cid-v2mkWXArgF .mbr-figure {
  align-self: center;
}
.cid-v2mkWXArgF .mbr-figure iframe {
  width: 100%;
}
.cid-v2mkWXArgF .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mkWXArgF .mbr-text,
.cid-v2mkWXArgF .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mkXL4WP5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mkXL4WP5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mkXL4WP5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mkXL4WP5 .video-wrapper iframe {
  width: 100%;
}
.cid-v2mkXL4WP5 .mbr-section-title,
.cid-v2mkXL4WP5 .mbr-section-subtitle,
.cid-v2mkXL4WP5 .mbr-text {
  text-align: center;
}
.cid-v2mojXGsZi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2mojXGsZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mojXGsZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mojXGsZi .video-wrapper iframe {
  width: 100%;
}
.cid-v2mojXGsZi .mbr-section-title,
.cid-v2mojXGsZi .mbr-section-subtitle,
.cid-v2mojXGsZi .mbr-text {
  text-align: center;
}
.cid-v2mkYzV4hD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sHjtdZft {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sHjtdZft img,
.cid-v2sHjtdZft .item-img {
  width: 100%;
}
.cid-v2sHjtdZft .item:focus,
.cid-v2sHjtdZft span:focus {
  outline: none;
}
.cid-v2sHjtdZft .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sHjtdZft .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sHjtdZft .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sHjtdZft .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sHjtdZft .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sHjtdZft .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sHjtdZft .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sHjtdZft .mbr-section-title {
  color: #ffffff;
}
.cid-v2sHjtdZft .mbr-text,
.cid-v2sHjtdZft .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHjtdZft .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHjtdZft .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sHjtdZft .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sHfeX5rE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sHfeX5rE img,
.cid-v2sHfeX5rE .item-img {
  width: 100%;
}
.cid-v2sHfeX5rE .item:focus,
.cid-v2sHfeX5rE span:focus {
  outline: none;
}
.cid-v2sHfeX5rE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sHfeX5rE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sHfeX5rE .item {
  padding: 0;
  margin: 0;
}
.cid-v2sHfeX5rE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sHfeX5rE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sHfeX5rE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sHfeX5rE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sHfeX5rE .mbr-section-title {
  color: #232323;
}
.cid-v2sHfeX5rE .mbr-text,
.cid-v2sHfeX5rE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHfeX5rE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHfeX5rE .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sHfeX5rE .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sHg5Kjkm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sHg5Kjkm img,
.cid-v2sHg5Kjkm .item-img {
  width: 100%;
}
.cid-v2sHg5Kjkm .item:focus,
.cid-v2sHg5Kjkm span:focus {
  outline: none;
}
.cid-v2sHg5Kjkm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sHg5Kjkm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sHg5Kjkm .item {
  padding: 0;
  margin: 0;
}
.cid-v2sHg5Kjkm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sHg5Kjkm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sHg5Kjkm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sHg5Kjkm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sHg5Kjkm .mbr-section-title {
  color: #ffffff;
}
.cid-v2sHg5Kjkm .mbr-text,
.cid-v2sHg5Kjkm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHg5Kjkm .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHg5Kjkm .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sHg5Kjkm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sHhiqWqd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sHhiqWqd img,
.cid-v2sHhiqWqd .item-img {
  width: 100%;
}
.cid-v2sHhiqWqd .item:focus,
.cid-v2sHhiqWqd span:focus {
  outline: none;
}
.cid-v2sHhiqWqd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sHhiqWqd .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sHhiqWqd .item {
  padding: 0;
  margin: 0;
}
.cid-v2sHhiqWqd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sHhiqWqd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sHhiqWqd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sHhiqWqd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sHhiqWqd .mbr-section-title {
  color: #ffffff;
}
.cid-v2sHhiqWqd .mbr-text,
.cid-v2sHhiqWqd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHhiqWqd .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHhiqWqd .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sHhiqWqd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sHi3WhkQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sHi3WhkQ img,
.cid-v2sHi3WhkQ .item-img {
  width: 100%;
}
.cid-v2sHi3WhkQ .item:focus,
.cid-v2sHi3WhkQ span:focus {
  outline: none;
}
.cid-v2sHi3WhkQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sHi3WhkQ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sHi3WhkQ .item {
  padding: 0;
  margin: 0;
}
.cid-v2sHi3WhkQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sHi3WhkQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sHi3WhkQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sHi3WhkQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sHi3WhkQ .mbr-section-title {
  color: #ffffff;
}
.cid-v2sHi3WhkQ .mbr-text,
.cid-v2sHi3WhkQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHi3WhkQ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sHi3WhkQ .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sHi3WhkQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2ml3pN8wC {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2ml57UzmU {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2ml57UzmU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ml57UzmU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2ml57UzmU .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2ml57UzmU .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2ml57UzmU .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2ml57UzmU .card {
    margin-bottom: 2rem;
  }
  .cid-v2ml57UzmU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sHcTxSpx {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sHcTxSpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sHcTxSpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sHcTxSpx .mbr-section-title {
  color: #000000;
}
.cid-v2sHdqvt54 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sHdqvt54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sHdqvt54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sHdqvt54 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sHdqvt54 .row {
  flex-direction: row-reverse;
}
.cid-v2sHdqvt54 img {
  width: 100%;
}
.cid-v2sHe07ORI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2ml68zzDI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2ml68zzDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ml68zzDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2ml68zzDI .row {
    flex-direction: column-reverse;
  }
  .cid-v2ml68zzDI .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2ml68zzDI .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2ml68zzDI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2ml68zzDI .media-content,
.cid-v2ml68zzDI .mbr-figure {
  align-self: center;
}
.cid-v2ml68zzDI .mbr-figure iframe {
  width: 100%;
}
.cid-v2ml68zzDI .mbr-section-title {
  color: #ffb18a;
}
.cid-v2ml68zzDI .mbr-text,
.cid-v2ml68zzDI .mbr-section-btn {
  color: #ffffff;
}
.cid-v2ml6BL18H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2ml6BL18H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ml6BL18H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2ml6BL18H .row {
    flex-direction: column-reverse;
  }
  .cid-v2ml6BL18H .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2ml6BL18H .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2ml6BL18H .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2ml6BL18H .media-content,
.cid-v2ml6BL18H .mbr-figure {
  align-self: center;
}
.cid-v2ml6BL18H .mbr-figure iframe {
  width: 100%;
}
.cid-v2ml6BL18H .mbr-section-title {
  color: #232323;
}
.cid-v2ml6BL18H .mbr-text,
.cid-v2ml6BL18H .mbr-section-btn {
  color: #000000;
}
.cid-v2rslTKP7X {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rslTKP7X .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rslTKP7X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rslTKP7X .mbr-text {
  color: #767676;
}
.cid-v2rslTKP7X .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rslTKP7X .title .num {
  width: 100%;
  display: block;
}
.cid-v2rslTKP7X .title .card-title {
  z-index: 1;
}
.cid-v2rslTKP7X .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rslTKP7X * {
    text-align: center !important;
  }
  .cid-v2rslTKP7X .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rslTKP7X .card-title,
.cid-v2rslTKP7X .card-img {
  color: #ffffff;
}
.cid-v2rslTKP7X .mbr-section-title,
.cid-v2rslTKP7X .card-box {
  color: #ffffff;
}
.cid-v2rslTKP7X .mbr-text,
.cid-v2rslTKP7X .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mlc6YKiA {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2mlc6YKiA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mlc6YKiA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2mlc6YKiA .container {
    max-width: 1400px;
  }
}
.cid-v2mlc6YKiA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2mlc6YKiA .card-wrapper {
  margin-top: 3rem;
}
.cid-v2mlc6YKiA .row {
  justify-content: center;
}
.cid-v2mlc6YKiA .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2mlc6YKiA .card-title,
.cid-v2mlc6YKiA .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2mlc6YKiA .mbr-section-title {
  color: #ffffff;
}
.cid-v2mlc6YKiA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mlczAZKj {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sHawRh2J {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sHawRh2J img,
.cid-v2sHawRh2J .item-img {
  width: 100%;
}
.cid-v2sHawRh2J .item:focus,
.cid-v2sHawRh2J span:focus {
  outline: none;
}
.cid-v2sHawRh2J .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sHawRh2J .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sHawRh2J .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sHawRh2J .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sHawRh2J .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sHawRh2J .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sHawRh2J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sHawRh2J .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sHawRh2J .mbr-text,
.cid-v2sHawRh2J .mbr-section-btn {
  text-align: left;
}
.cid-v2sHawRh2J .item-title {
  text-align: left;
}
.cid-v2sHawRh2J .item-subtitle {
  text-align: left;
}
.cid-v2sHawRh2J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mldpN6VI {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mldpN6VI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2mldpN6VI .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2mldpN6VI .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mldpN6VI .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2mldpN6VI .mbr-section-title {
  color: #ffffff;
}
.cid-v2mldpN6VI .card-title {
  color: #ffffff;
}
.cid-v2mldpN6VI .mbr-text {
  color: #ffffff;
}
.cid-v2mldpN6VI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mldpN6VI .link {
  color: #44c200;
}
.cid-v2mle0akhp {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2mle0akhp p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2mle0akhp .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2mle0akhp .collapsed {
  border: none;
}
.cid-v2mle0akhp .collapsed span {
  transform: rotate(0deg);
}
.cid-v2mle0akhp span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2mle0akhp .panel-body {
  padding-top: 0.5rem;
}
.cid-v2mle0akhp .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2mle0akhp .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2mle0akhp .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2mle0akhp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2mle0akhp .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2mle0akhp .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2mle0akhp .panel-text {
  color: #ffffff;
}
.cid-v2mle0akhp H4 {
  color: #ffffff;
}
.cid-v2mle0akhp H2 {
  color: #ffffff;
}
.cid-v2mle0akhp .mbr-section-text {
  color: #ffffff;
}
.cid-v2mle0akhp H3 {
  color: #ffffff;
}
.cid-v2mlewysK4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2mlewysK4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2mlewysK4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2mlewysK4 .row {
    text-align: center;
  }
  .cid-v2mlewysK4 .social-row {
    justify-content: center;
  }
}
.cid-v2mlewysK4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2mlewysK4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mlewysK4 .list {
    margin-bottom: 0rem;
  }
}
.cid-v2mlewysK4 .mbr-text {
  color: #fafafa;
}
.cid-v2mlewysK4 .mbr-iconfont {
  color: black;
}
.cid-v2mlewysK4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aY1qlaeC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aY1qlaeC nav.navbar {
  position: fixed;
}
.cid-v2aY1qlaeC .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-v2aY1qlaeC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aY1qlaeC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aY1qlaeC .dropdown-item:hover,
.cid-v2aY1qlaeC .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aY1qlaeC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aY1qlaeC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aY1qlaeC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aY1qlaeC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aY1qlaeC .nav-link {
  position: relative;
}
.cid-v2aY1qlaeC .container {
  display: flex;
  margin: auto;
}
.cid-v2aY1qlaeC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aY1qlaeC .dropdown-menu,
.cid-v2aY1qlaeC .navbar.opened {
  background: #353535 !important;
}
.cid-v2aY1qlaeC .nav-item:focus,
.cid-v2aY1qlaeC .nav-link:focus {
  outline: none;
}
.cid-v2aY1qlaeC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aY1qlaeC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aY1qlaeC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aY1qlaeC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aY1qlaeC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aY1qlaeC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aY1qlaeC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aY1qlaeC .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aY1qlaeC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aY1qlaeC .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aY1qlaeC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aY1qlaeC .navbar.collapsed {
  justify-content: center;
}
.cid-v2aY1qlaeC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aY1qlaeC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aY1qlaeC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aY1qlaeC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aY1qlaeC .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-v2aY1qlaeC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aY1qlaeC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aY1qlaeC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aY1qlaeC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aY1qlaeC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aY1qlaeC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aY1qlaeC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aY1qlaeC .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-v2aY1qlaeC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aY1qlaeC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aY1qlaeC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aY1qlaeC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aY1qlaeC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aY1qlaeC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aY1qlaeC .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aY1qlaeC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aY1qlaeC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aY1qlaeC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aY1qlaeC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aY1qlaeC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aY1qlaeC .dropdown-item.active,
.cid-v2aY1qlaeC .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aY1qlaeC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aY1qlaeC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aY1qlaeC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aY1qlaeC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aY1qlaeC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aY1qlaeC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aY1qlaeC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aY1qlaeC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aY1qlaeC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aY1qlaeC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aY1qlaeC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aY1qlaeC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aY1qlaeC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aY1qlaeC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aY1qlaeC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aY1qlaeC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aY1qlaeC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aY1qlaeC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aY1qlaeC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aY1qlaeC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aY1qlaeC .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-v2aY1qlaeC .navbar {
    height: 70px;
  }
  .cid-v2aY1qlaeC .navbar.opened {
    height: auto;
  }
  .cid-v2aY1qlaeC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2hiiWPAMm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2hiiWPAMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hiiWPAMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hiiWPAMm .row {
    flex-direction: column-reverse;
  }
  .cid-v2hiiWPAMm .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hiiWPAMm .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hiiWPAMm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hiiWPAMm .media-content,
.cid-v2hiiWPAMm .mbr-figure {
  align-self: center;
}
.cid-v2hiiWPAMm .mbr-figure iframe {
  width: 100%;
}
.cid-v2hiiWPAMm .mbr-section-title {
  color: #ffb18a;
}
.cid-v2hiiWPAMm .mbr-text,
.cid-v2hiiWPAMm .mbr-section-btn {
  color: #ffffff;
}
.cid-v2hilf0g3o {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2hilf0g3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hilf0g3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hilf0g3o .video-wrapper iframe {
  width: 100%;
}
.cid-v2hilf0g3o .mbr-section-title,
.cid-v2hilf0g3o .mbr-section-subtitle,
.cid-v2hilf0g3o .mbr-text {
  text-align: center;
}
.cid-v2hlflrN1Q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2hlflrN1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hlflrN1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hlflrN1Q .video-wrapper iframe {
  width: 100%;
}
.cid-v2hlflrN1Q .mbr-section-title,
.cid-v2hlflrN1Q .mbr-section-subtitle,
.cid-v2hlflrN1Q .mbr-text {
  text-align: center;
}
.cid-v2himUc2P4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sB94o6sN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sB94o6sN img,
.cid-v2sB94o6sN .item-img {
  width: 100%;
}
.cid-v2sB94o6sN .item:focus,
.cid-v2sB94o6sN span:focus {
  outline: none;
}
.cid-v2sB94o6sN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sB94o6sN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sB94o6sN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sB94o6sN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sB94o6sN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sB94o6sN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sB94o6sN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sB94o6sN .mbr-section-title {
  color: #ffffff;
}
.cid-v2sB94o6sN .mbr-text,
.cid-v2sB94o6sN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sB94o6sN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sB94o6sN .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sB94o6sN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sBafrpR9 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sBafrpR9 img,
.cid-v2sBafrpR9 .item-img {
  width: 100%;
}
.cid-v2sBafrpR9 .item:focus,
.cid-v2sBafrpR9 span:focus {
  outline: none;
}
.cid-v2sBafrpR9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sBafrpR9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sBafrpR9 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sBafrpR9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sBafrpR9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sBafrpR9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sBafrpR9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sBafrpR9 .mbr-section-title {
  color: #232323;
}
.cid-v2sBafrpR9 .mbr-text,
.cid-v2sBafrpR9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBafrpR9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBafrpR9 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sBafrpR9 .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sBbu5mbA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sBbu5mbA img,
.cid-v2sBbu5mbA .item-img {
  width: 100%;
}
.cid-v2sBbu5mbA .item:focus,
.cid-v2sBbu5mbA span:focus {
  outline: none;
}
.cid-v2sBbu5mbA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sBbu5mbA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sBbu5mbA .item {
  padding: 0;
  margin: 0;
}
.cid-v2sBbu5mbA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sBbu5mbA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sBbu5mbA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sBbu5mbA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sBbu5mbA .mbr-section-title {
  color: #ffffff;
}
.cid-v2sBbu5mbA .mbr-text,
.cid-v2sBbu5mbA .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBbu5mbA .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBbu5mbA .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sBbu5mbA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sBclkX9l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sBclkX9l img,
.cid-v2sBclkX9l .item-img {
  width: 100%;
}
.cid-v2sBclkX9l .item:focus,
.cid-v2sBclkX9l span:focus {
  outline: none;
}
.cid-v2sBclkX9l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sBclkX9l .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sBclkX9l .item {
  padding: 0;
  margin: 0;
}
.cid-v2sBclkX9l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sBclkX9l .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sBclkX9l .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sBclkX9l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sBclkX9l .mbr-section-title {
  color: #ffffff;
}
.cid-v2sBclkX9l .mbr-text,
.cid-v2sBclkX9l .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBclkX9l .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBclkX9l .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sBclkX9l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sBd39DtG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sBd39DtG img,
.cid-v2sBd39DtG .item-img {
  width: 100%;
}
.cid-v2sBd39DtG .item:focus,
.cid-v2sBd39DtG span:focus {
  outline: none;
}
.cid-v2sBd39DtG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sBd39DtG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sBd39DtG .item {
  padding: 0;
  margin: 0;
}
.cid-v2sBd39DtG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sBd39DtG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sBd39DtG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sBd39DtG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sBd39DtG .mbr-section-title {
  color: #ffffff;
}
.cid-v2sBd39DtG .mbr-text,
.cid-v2sBd39DtG .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBd39DtG .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sBd39DtG .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sBd39DtG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hitqXj1N {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2hisKTJQz {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2hisKTJQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hisKTJQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2hisKTJQz .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2hisKTJQz .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2hisKTJQz .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2hisKTJQz .card {
    margin-bottom: 2rem;
  }
  .cid-v2hisKTJQz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2hiv88S2D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2hiv88S2D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hiv88S2D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hiv88S2D .row {
    flex-direction: column-reverse;
  }
  .cid-v2hiv88S2D .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hiv88S2D .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hiv88S2D .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hiv88S2D .media-content,
.cid-v2hiv88S2D .mbr-figure {
  align-self: center;
}
.cid-v2hiv88S2D .mbr-figure iframe {
  width: 100%;
}
.cid-v2hiv88S2D .mbr-section-title {
  color: #ffb18a;
}
.cid-v2hiv88S2D .mbr-text,
.cid-v2hiv88S2D .mbr-section-btn {
  color: #ffffff;
}
.cid-v2hivVtHnI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2hivVtHnI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hivVtHnI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2hivVtHnI .row {
    flex-direction: column-reverse;
  }
  .cid-v2hivVtHnI .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2hivVtHnI .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2hivVtHnI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2hivVtHnI .media-content,
.cid-v2hivVtHnI .mbr-figure {
  align-self: center;
}
.cid-v2hivVtHnI .mbr-figure iframe {
  width: 100%;
}
.cid-v2hivVtHnI .mbr-section-title {
  color: #232323;
}
.cid-v2hivVtHnI .mbr-text,
.cid-v2hivVtHnI .mbr-section-btn {
  color: #000000;
}
.cid-v2hiyrd7YA {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2hiyrd7YA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2hiyrd7YA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2hiyrd7YA .container {
    max-width: 1400px;
  }
}
.cid-v2hiyrd7YA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2hiyrd7YA .card-wrapper {
  margin-top: 3rem;
}
.cid-v2hiyrd7YA .row {
  justify-content: center;
}
.cid-v2hiyrd7YA .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2hiyrd7YA .card-title,
.cid-v2hiyrd7YA .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2hiyrd7YA .mbr-section-title {
  color: #ffffff;
}
.cid-v2hiyrd7YA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hiz7KR8q {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sBeS3dAj {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sBeS3dAj img,
.cid-v2sBeS3dAj .item-img {
  width: 100%;
}
.cid-v2sBeS3dAj .item:focus,
.cid-v2sBeS3dAj span:focus {
  outline: none;
}
.cid-v2sBeS3dAj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sBeS3dAj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sBeS3dAj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sBeS3dAj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sBeS3dAj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sBeS3dAj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sBeS3dAj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sBeS3dAj .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sBeS3dAj .mbr-text,
.cid-v2sBeS3dAj .mbr-section-btn {
  text-align: left;
}
.cid-v2sBeS3dAj .item-title {
  text-align: left;
}
.cid-v2sBeS3dAj .item-subtitle {
  text-align: left;
}
.cid-v2sBeS3dAj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hiAzNQWC {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2hiAzNQWC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2hiAzNQWC .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2hiAzNQWC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2hiAzNQWC .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2hiAzNQWC .mbr-section-title {
  color: #ffffff;
}
.cid-v2hiAzNQWC .card-title {
  color: #ffffff;
}
.cid-v2hiAzNQWC .mbr-text {
  color: #ffffff;
}
.cid-v2hiAzNQWC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2hiAzNQWC .link {
  color: #44c200;
}
.cid-v2hiB4bNJW {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2hiB4bNJW p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2hiB4bNJW .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2hiB4bNJW .collapsed {
  border: none;
}
.cid-v2hiB4bNJW .collapsed span {
  transform: rotate(0deg);
}
.cid-v2hiB4bNJW span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2hiB4bNJW .panel-body {
  padding-top: 0.5rem;
}
.cid-v2hiB4bNJW .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2hiB4bNJW .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2hiB4bNJW .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2hiB4bNJW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2hiB4bNJW .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2hiB4bNJW .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2hiB4bNJW .panel-text {
  color: #ffffff;
}
.cid-v2hiB4bNJW H4 {
  color: #ffffff;
}
.cid-v2hiB4bNJW H2 {
  color: #ffffff;
}
.cid-v2hiB4bNJW .mbr-section-text {
  color: #ffffff;
}
.cid-v2hiB4bNJW H3 {
  color: #ffffff;
}
.cid-v2hiBy0mz3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2hiBy0mz3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2hiBy0mz3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2hiBy0mz3 .row {
    text-align: center;
  }
  .cid-v2hiBy0mz3 .social-row {
    justify-content: center;
  }
}
.cid-v2hiBy0mz3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2hiBy0mz3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2hiBy0mz3 .list {
    margin-bottom: 0rem;
  }
}
.cid-v2hiBy0mz3 .mbr-text {
  color: #fafafa;
}
.cid-v2hiBy0mz3 .mbr-iconfont {
  color: black;
}
.cid-v2hiBy0mz3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fI44sChL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2fI44sChL nav.navbar {
  position: fixed;
}
.cid-v2fI44sChL .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-v2fI44sChL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2fI44sChL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2fI44sChL .dropdown-item:hover,
.cid-v2fI44sChL .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2fI44sChL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2fI44sChL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2fI44sChL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2fI44sChL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2fI44sChL .nav-link {
  position: relative;
}
.cid-v2fI44sChL .container {
  display: flex;
  margin: auto;
}
.cid-v2fI44sChL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2fI44sChL .dropdown-menu,
.cid-v2fI44sChL .navbar.opened {
  background: #353535 !important;
}
.cid-v2fI44sChL .nav-item:focus,
.cid-v2fI44sChL .nav-link:focus {
  outline: none;
}
.cid-v2fI44sChL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2fI44sChL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2fI44sChL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2fI44sChL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2fI44sChL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2fI44sChL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2fI44sChL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2fI44sChL .navbar.opened {
  transition: all 0.3s;
}
.cid-v2fI44sChL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2fI44sChL .navbar .navbar-logo img {
  width: auto;
}
.cid-v2fI44sChL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2fI44sChL .navbar.collapsed {
  justify-content: center;
}
.cid-v2fI44sChL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2fI44sChL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2fI44sChL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2fI44sChL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2fI44sChL .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-v2fI44sChL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2fI44sChL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2fI44sChL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2fI44sChL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2fI44sChL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2fI44sChL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2fI44sChL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2fI44sChL .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-v2fI44sChL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2fI44sChL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2fI44sChL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2fI44sChL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2fI44sChL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2fI44sChL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2fI44sChL .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2fI44sChL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2fI44sChL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2fI44sChL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2fI44sChL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2fI44sChL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2fI44sChL .dropdown-item.active,
.cid-v2fI44sChL .dropdown-item:active {
  background-color: transparent;
}
.cid-v2fI44sChL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2fI44sChL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2fI44sChL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2fI44sChL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2fI44sChL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2fI44sChL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2fI44sChL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2fI44sChL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2fI44sChL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2fI44sChL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2fI44sChL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2fI44sChL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2fI44sChL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2fI44sChL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2fI44sChL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2fI44sChL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2fI44sChL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2fI44sChL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2fI44sChL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2fI44sChL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2fI44sChL .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-v2fI44sChL .navbar {
    height: 70px;
  }
  .cid-v2fI44sChL .navbar.opened {
    height: auto;
  }
  .cid-v2fI44sChL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2fI44OCKJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2fI44OCKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI44OCKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2fI44OCKJ .row {
    flex-direction: column-reverse;
  }
  .cid-v2fI44OCKJ .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2fI44OCKJ .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2fI44OCKJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2fI44OCKJ .media-content,
.cid-v2fI44OCKJ .mbr-figure {
  align-self: center;
}
.cid-v2fI44OCKJ .mbr-figure iframe {
  width: 100%;
}
.cid-v2fI44OCKJ .mbr-section-title {
  color: #ffb18a;
}
.cid-v2fI44OCKJ .mbr-text,
.cid-v2fI44OCKJ .mbr-section-btn {
  color: #ffffff;
}
.cid-v2fI454g2t {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2fI454g2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI454g2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fI454g2t .video-wrapper iframe {
  width: 100%;
}
.cid-v2fI454g2t .mbr-section-title,
.cid-v2fI454g2t .mbr-section-subtitle,
.cid-v2fI454g2t .mbr-text {
  text-align: center;
}
.cid-v2fI45k22X {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2sGcGGb9U {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sGcGGb9U img,
.cid-v2sGcGGb9U .item-img {
  width: 100%;
}
.cid-v2sGcGGb9U .item:focus,
.cid-v2sGcGGb9U span:focus {
  outline: none;
}
.cid-v2sGcGGb9U .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGcGGb9U .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGcGGb9U .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sGcGGb9U .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGcGGb9U .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sGcGGb9U .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sGcGGb9U .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGcGGb9U .mbr-section-title {
  color: #ffffff;
}
.cid-v2sGcGGb9U .mbr-text,
.cid-v2sGcGGb9U .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGcGGb9U .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGcGGb9U .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sGcGGb9U .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fI45U8uE {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2fI45U8uE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI45U8uE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fI45U8uE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2fI45U8uE .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2fI45U8uE .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2fI45U8uE .card {
    margin-bottom: 2rem;
  }
  .cid-v2fI45U8uE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sG8U50h4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sG8U50h4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sG8U50h4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sG8U50h4 .mbr-section-title {
  color: #000000;
}
.cid-v2sG9zzSiG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sG9zzSiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sG9zzSiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sG9zzSiG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sG9zzSiG .row {
  flex-direction: row-reverse;
}
.cid-v2sG9zzSiG img {
  width: 100%;
}
.cid-v2sGakqHhL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2fI46b9Vs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2fI46b9Vs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI46b9Vs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2fI46b9Vs .row {
    flex-direction: column-reverse;
  }
  .cid-v2fI46b9Vs .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2fI46b9Vs .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2fI46b9Vs .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2fI46b9Vs .media-content,
.cid-v2fI46b9Vs .mbr-figure {
  align-self: center;
}
.cid-v2fI46b9Vs .mbr-figure iframe {
  width: 100%;
}
.cid-v2fI46b9Vs .mbr-section-title {
  color: #ffb18a;
}
.cid-v2fI46b9Vs .mbr-text,
.cid-v2fI46b9Vs .mbr-section-btn {
  color: #ffffff;
}
.cid-v2fI46rN6q {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2fI46rN6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI46rN6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fI46rN6q .mbr-text {
  color: #767676;
}
.cid-v2fI46rN6q .mbr-section-subtitle {
  color: #767676;
}
.cid-v2fI46rN6q .title .num {
  width: 100%;
  display: block;
}
.cid-v2fI46rN6q .title .card-title {
  z-index: 1;
}
.cid-v2fI46rN6q .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2fI46rN6q * {
    text-align: center !important;
  }
  .cid-v2fI46rN6q .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2fI46rN6q .card-title,
.cid-v2fI46rN6q .card-img {
  color: #ffffff;
}
.cid-v2fI46rN6q .mbr-section-title,
.cid-v2fI46rN6q .card-box {
  color: #ffffff;
}
.cid-v2fI46rN6q .mbr-text,
.cid-v2fI46rN6q .mbr-section-btn {
  color: #ffffff;
}
.cid-v2fI46XijO {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2fI46XijO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI46XijO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2fI46XijO .container {
    max-width: 1400px;
  }
}
.cid-v2fI46XijO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2fI46XijO .card-wrapper {
  margin-top: 3rem;
}
.cid-v2fI46XijO .row {
  justify-content: center;
}
.cid-v2fI46XijO .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2fI46XijO .card-title,
.cid-v2fI46XijO .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2fI46XijO .mbr-section-title {
  color: #ffffff;
}
.cid-v2fI46XijO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fI47m5zT {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2fI47yqdb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2fI47yqdb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fI47yqdb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2fI47yqdb .row {
    flex-direction: column-reverse;
  }
  .cid-v2fI47yqdb .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2fI47yqdb .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2fI47yqdb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2fI47yqdb .media-content,
.cid-v2fI47yqdb .mbr-figure {
  align-self: center;
}
.cid-v2fI47yqdb .mbr-figure iframe {
  width: 100%;
}
.cid-v2fI47yqdb .mbr-section-title {
  color: #232323;
}
.cid-v2fI47yqdb .mbr-text,
.cid-v2fI47yqdb .mbr-section-btn {
  color: #000000;
}
.cid-v2sG6pbWiK {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sG6pbWiK img,
.cid-v2sG6pbWiK .item-img {
  width: 100%;
}
.cid-v2sG6pbWiK .item:focus,
.cid-v2sG6pbWiK span:focus {
  outline: none;
}
.cid-v2sG6pbWiK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sG6pbWiK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sG6pbWiK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sG6pbWiK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sG6pbWiK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sG6pbWiK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sG6pbWiK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sG6pbWiK .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sG6pbWiK .mbr-text,
.cid-v2sG6pbWiK .mbr-section-btn {
  text-align: left;
}
.cid-v2sG6pbWiK .item-title {
  text-align: left;
}
.cid-v2sG6pbWiK .item-subtitle {
  text-align: left;
}
.cid-v2sG6pbWiK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fI48cebv {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2fI48cebv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2fI48cebv .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2fI48cebv .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2fI48cebv .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2fI48cebv .mbr-section-title {
  color: #ffffff;
}
.cid-v2fI48cebv .card-title {
  color: #ffffff;
}
.cid-v2fI48cebv .mbr-text {
  color: #ffffff;
}
.cid-v2fI48cebv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fI48cebv .link {
  color: #44c200;
}
.cid-v2fI48uQWk {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2fI48uQWk p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2fI48uQWk .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2fI48uQWk .collapsed {
  border: none;
}
.cid-v2fI48uQWk .collapsed span {
  transform: rotate(0deg);
}
.cid-v2fI48uQWk span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2fI48uQWk .panel-body {
  padding-top: 0.5rem;
}
.cid-v2fI48uQWk .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2fI48uQWk .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2fI48uQWk .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2fI48uQWk .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2fI48uQWk .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2fI48uQWk .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2fI48uQWk .panel-text {
  color: #ffffff;
}
.cid-v2fI48uQWk H4 {
  color: #ffffff;
}
.cid-v2fI48uQWk H2 {
  color: #ffffff;
}
.cid-v2fI48uQWk .mbr-section-text {
  color: #ffffff;
}
.cid-v2fI48uQWk H3 {
  color: #ffffff;
}
.cid-v2fI48THCJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2fI48THCJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2fI48THCJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2fI48THCJ .row {
    text-align: center;
  }
  .cid-v2fI48THCJ .social-row {
    justify-content: center;
  }
}
.cid-v2fI48THCJ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2fI48THCJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2fI48THCJ .list {
    margin-bottom: 0rem;
  }
}
.cid-v2fI48THCJ .mbr-text {
  color: #fafafa;
}
.cid-v2fI48THCJ .mbr-iconfont {
  color: black;
}
.cid-v2fI48THCJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2g77JM8Gs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2g77JM8Gs nav.navbar {
  position: fixed;
}
.cid-v2g77JM8Gs .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-v2g77JM8Gs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2g77JM8Gs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2g77JM8Gs .dropdown-item:hover,
.cid-v2g77JM8Gs .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2g77JM8Gs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2g77JM8Gs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2g77JM8Gs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2g77JM8Gs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2g77JM8Gs .nav-link {
  position: relative;
}
.cid-v2g77JM8Gs .container {
  display: flex;
  margin: auto;
}
.cid-v2g77JM8Gs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2g77JM8Gs .dropdown-menu,
.cid-v2g77JM8Gs .navbar.opened {
  background: #353535 !important;
}
.cid-v2g77JM8Gs .nav-item:focus,
.cid-v2g77JM8Gs .nav-link:focus {
  outline: none;
}
.cid-v2g77JM8Gs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2g77JM8Gs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2g77JM8Gs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2g77JM8Gs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2g77JM8Gs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2g77JM8Gs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2g77JM8Gs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2g77JM8Gs .navbar.opened {
  transition: all 0.3s;
}
.cid-v2g77JM8Gs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2g77JM8Gs .navbar .navbar-logo img {
  width: auto;
}
.cid-v2g77JM8Gs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2g77JM8Gs .navbar.collapsed {
  justify-content: center;
}
.cid-v2g77JM8Gs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2g77JM8Gs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2g77JM8Gs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2g77JM8Gs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2g77JM8Gs .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-v2g77JM8Gs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2g77JM8Gs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2g77JM8Gs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2g77JM8Gs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2g77JM8Gs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2g77JM8Gs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2g77JM8Gs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2g77JM8Gs .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-v2g77JM8Gs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2g77JM8Gs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2g77JM8Gs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2g77JM8Gs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2g77JM8Gs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2g77JM8Gs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2g77JM8Gs .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2g77JM8Gs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2g77JM8Gs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2g77JM8Gs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2g77JM8Gs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2g77JM8Gs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2g77JM8Gs .dropdown-item.active,
.cid-v2g77JM8Gs .dropdown-item:active {
  background-color: transparent;
}
.cid-v2g77JM8Gs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2g77JM8Gs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2g77JM8Gs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2g77JM8Gs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2g77JM8Gs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2g77JM8Gs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2g77JM8Gs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2g77JM8Gs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2g77JM8Gs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2g77JM8Gs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2g77JM8Gs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2g77JM8Gs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g77JM8Gs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2g77JM8Gs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2g77JM8Gs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g77JM8Gs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2g77JM8Gs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2g77JM8Gs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2g77JM8Gs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2g77JM8Gs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2g77JM8Gs .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-v2g77JM8Gs .navbar {
    height: 70px;
  }
  .cid-v2g77JM8Gs .navbar.opened {
    height: auto;
  }
  .cid-v2g77JM8Gs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2misTrQuC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2misTrQuC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2misTrQuC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2misTrQuC .row {
    flex-direction: column-reverse;
  }
  .cid-v2misTrQuC .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2misTrQuC .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2misTrQuC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2misTrQuC .media-content,
.cid-v2misTrQuC .mbr-figure {
  align-self: center;
}
.cid-v2misTrQuC .mbr-figure iframe {
  width: 100%;
}
.cid-v2misTrQuC .mbr-section-title {
  color: #ffb18a;
}
.cid-v2misTrQuC .mbr-text,
.cid-v2misTrQuC .mbr-section-btn {
  color: #ffffff;
}
.cid-v2miu8qjV3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2miu8qjV3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2miu8qjV3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2miu8qjV3 .video-wrapper iframe {
  width: 100%;
}
.cid-v2miu8qjV3 .mbr-section-title,
.cid-v2miu8qjV3 .mbr-section-subtitle,
.cid-v2miu8qjV3 .mbr-text {
  text-align: center;
}
.cid-v2mivrwoPf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sGUz1qiE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sGUz1qiE img,
.cid-v2sGUz1qiE .item-img {
  width: 100%;
}
.cid-v2sGUz1qiE .item:focus,
.cid-v2sGUz1qiE span:focus {
  outline: none;
}
.cid-v2sGUz1qiE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGUz1qiE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGUz1qiE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sGUz1qiE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGUz1qiE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sGUz1qiE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sGUz1qiE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGUz1qiE .mbr-section-title {
  color: #ffffff;
}
.cid-v2sGUz1qiE .mbr-text,
.cid-v2sGUz1qiE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGUz1qiE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGUz1qiE .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sGUz1qiE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sGQUWNaV {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sGQUWNaV img,
.cid-v2sGQUWNaV .item-img {
  width: 100%;
}
.cid-v2sGQUWNaV .item:focus,
.cid-v2sGQUWNaV span:focus {
  outline: none;
}
.cid-v2sGQUWNaV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGQUWNaV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sGQUWNaV .item {
  padding: 0;
  margin: 0;
}
.cid-v2sGQUWNaV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGQUWNaV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGQUWNaV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sGQUWNaV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGQUWNaV .mbr-section-title {
  color: #232323;
}
.cid-v2sGQUWNaV .mbr-text,
.cid-v2sGQUWNaV .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGQUWNaV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGQUWNaV .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sGQUWNaV .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sGRX1CbH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sGRX1CbH img,
.cid-v2sGRX1CbH .item-img {
  width: 100%;
}
.cid-v2sGRX1CbH .item:focus,
.cid-v2sGRX1CbH span:focus {
  outline: none;
}
.cid-v2sGRX1CbH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGRX1CbH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sGRX1CbH .item {
  padding: 0;
  margin: 0;
}
.cid-v2sGRX1CbH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGRX1CbH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGRX1CbH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sGRX1CbH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGRX1CbH .mbr-section-title {
  color: #ffffff;
}
.cid-v2sGRX1CbH .mbr-text,
.cid-v2sGRX1CbH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGRX1CbH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGRX1CbH .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sGRX1CbH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sGSvtxM7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sGSvtxM7 img,
.cid-v2sGSvtxM7 .item-img {
  width: 100%;
}
.cid-v2sGSvtxM7 .item:focus,
.cid-v2sGSvtxM7 span:focus {
  outline: none;
}
.cid-v2sGSvtxM7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGSvtxM7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sGSvtxM7 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sGSvtxM7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGSvtxM7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGSvtxM7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sGSvtxM7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGSvtxM7 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sGSvtxM7 .mbr-text,
.cid-v2sGSvtxM7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGSvtxM7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGSvtxM7 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sGSvtxM7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sGT55WR2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sGT55WR2 img,
.cid-v2sGT55WR2 .item-img {
  width: 100%;
}
.cid-v2sGT55WR2 .item:focus,
.cid-v2sGT55WR2 span:focus {
  outline: none;
}
.cid-v2sGT55WR2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGT55WR2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sGT55WR2 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sGT55WR2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGT55WR2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGT55WR2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sGT55WR2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGT55WR2 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sGT55WR2 .mbr-text,
.cid-v2sGT55WR2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGT55WR2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sGT55WR2 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sGT55WR2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mixaL3my {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mixaL3my img,
.cid-v2mixaL3my .item-img {
  width: 100%;
}
.cid-v2mixaL3my .item:focus,
.cid-v2mixaL3my span:focus {
  outline: none;
}
.cid-v2mixaL3my .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2mixaL3my .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2mixaL3my .item {
  padding: 0;
  margin: 0;
}
.cid-v2mixaL3my .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2mixaL3my .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2mixaL3my .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2mixaL3my .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2mixaL3my .mbr-section-title {
  color: #232323;
}
.cid-v2mixaL3my .mbr-text,
.cid-v2mixaL3my .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2mixaL3my .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2mixaL3my .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2mixaL3my .mbr-section-subtitle {
  color: #000000;
}
.cid-v2mixH46Gk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mixH46Gk img,
.cid-v2mixH46Gk .item-img {
  width: 100%;
}
.cid-v2mixH46Gk .item:focus,
.cid-v2mixH46Gk span:focus {
  outline: none;
}
.cid-v2mixH46Gk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2mixH46Gk .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2mixH46Gk .item {
  padding: 0;
  margin: 0;
}
.cid-v2mixH46Gk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2mixH46Gk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2mixH46Gk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2mixH46Gk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2mixH46Gk .mbr-section-title {
  color: #ffffff;
}
.cid-v2mixH46Gk .mbr-text,
.cid-v2mixH46Gk .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2mixH46Gk .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2mixH46Gk .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2mixH46Gk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2miyt20Lc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2miyt20Lc img,
.cid-v2miyt20Lc .item-img {
  width: 100%;
}
.cid-v2miyt20Lc .item:focus,
.cid-v2miyt20Lc span:focus {
  outline: none;
}
.cid-v2miyt20Lc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2miyt20Lc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2miyt20Lc .item {
  padding: 0;
  margin: 0;
}
.cid-v2miyt20Lc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2miyt20Lc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2miyt20Lc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2miyt20Lc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2miyt20Lc .mbr-section-title {
  color: #ffffff;
}
.cid-v2miyt20Lc .mbr-text,
.cid-v2miyt20Lc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2miyt20Lc .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2miyt20Lc .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2miyt20Lc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2miyZ1EOi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2miyZ1EOi img,
.cid-v2miyZ1EOi .item-img {
  width: 100%;
}
.cid-v2miyZ1EOi .item:focus,
.cid-v2miyZ1EOi span:focus {
  outline: none;
}
.cid-v2miyZ1EOi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2miyZ1EOi .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2miyZ1EOi .item {
  padding: 0;
  margin: 0;
}
.cid-v2miyZ1EOi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2miyZ1EOi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2miyZ1EOi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2miyZ1EOi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2miyZ1EOi .mbr-section-title {
  color: #ffffff;
}
.cid-v2miyZ1EOi .mbr-text,
.cid-v2miyZ1EOi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2miyZ1EOi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2miyZ1EOi .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2miyZ1EOi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mizzNAmK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2miAPGscd {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2miAPGscd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2miAPGscd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2miAPGscd .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2miAPGscd .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2miAPGscd .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2miAPGscd .card {
    margin-bottom: 2rem;
  }
  .cid-v2miAPGscd .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sGOo4KsV {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sGOo4KsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sGOo4KsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sGOo4KsV .mbr-section-title {
  color: #000000;
}
.cid-v2sGP34VfB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sGP34VfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sGP34VfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sGP34VfB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sGP34VfB .row {
  flex-direction: row-reverse;
}
.cid-v2sGP34VfB img {
  width: 100%;
}
.cid-v2sGPEp2dh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2miBLtUpy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2miBLtUpy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2miBLtUpy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2miBLtUpy .row {
    flex-direction: column-reverse;
  }
  .cid-v2miBLtUpy .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2miBLtUpy .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2miBLtUpy .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2miBLtUpy .media-content,
.cid-v2miBLtUpy .mbr-figure {
  align-self: center;
}
.cid-v2miBLtUpy .mbr-figure iframe {
  width: 100%;
}
.cid-v2miBLtUpy .mbr-section-title {
  color: #ffb18a;
}
.cid-v2miBLtUpy .mbr-text,
.cid-v2miBLtUpy .mbr-section-btn {
  color: #ffffff;
}
.cid-v2miCZI1Ol {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2miCZI1Ol .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2miCZI1Ol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2miCZI1Ol .row {
    flex-direction: column-reverse;
  }
  .cid-v2miCZI1Ol .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2miCZI1Ol .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2miCZI1Ol .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2miCZI1Ol .media-content,
.cid-v2miCZI1Ol .mbr-figure {
  align-self: center;
}
.cid-v2miCZI1Ol .mbr-figure iframe {
  width: 100%;
}
.cid-v2miCZI1Ol .mbr-section-title {
  color: #232323;
}
.cid-v2miCZI1Ol .mbr-text,
.cid-v2miCZI1Ol .mbr-section-btn {
  color: #000000;
}
.cid-v2rrH5Svy9 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rrH5Svy9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rrH5Svy9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rrH5Svy9 .mbr-text {
  color: #767676;
}
.cid-v2rrH5Svy9 .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rrH5Svy9 .title .num {
  width: 100%;
  display: block;
}
.cid-v2rrH5Svy9 .title .card-title {
  z-index: 1;
}
.cid-v2rrH5Svy9 .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rrH5Svy9 * {
    text-align: center !important;
  }
  .cid-v2rrH5Svy9 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rrH5Svy9 .card-title,
.cid-v2rrH5Svy9 .card-img {
  color: #ffffff;
}
.cid-v2rrH5Svy9 .mbr-section-title,
.cid-v2rrH5Svy9 .card-box {
  color: #ffffff;
}
.cid-v2rrH5Svy9 .mbr-text,
.cid-v2rrH5Svy9 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2miE4AQ8v {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2miE4AQ8v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2miE4AQ8v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2miE4AQ8v .container {
    max-width: 1400px;
  }
}
.cid-v2miE4AQ8v .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2miE4AQ8v .card-wrapper {
  margin-top: 3rem;
}
.cid-v2miE4AQ8v .row {
  justify-content: center;
}
.cid-v2miE4AQ8v .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2miE4AQ8v .card-title,
.cid-v2miE4AQ8v .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2miE4AQ8v .mbr-section-title {
  color: #ffffff;
}
.cid-v2miE4AQ8v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2miEvyHMt {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sGxM4f2v {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sGxM4f2v img,
.cid-v2sGxM4f2v .item-img {
  width: 100%;
}
.cid-v2sGxM4f2v .item:focus,
.cid-v2sGxM4f2v span:focus {
  outline: none;
}
.cid-v2sGxM4f2v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sGxM4f2v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sGxM4f2v .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sGxM4f2v .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sGxM4f2v .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sGxM4f2v .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sGxM4f2v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sGxM4f2v .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sGxM4f2v .mbr-text,
.cid-v2sGxM4f2v .mbr-section-btn {
  text-align: left;
}
.cid-v2sGxM4f2v .item-title {
  text-align: left;
}
.cid-v2sGxM4f2v .item-subtitle {
  text-align: left;
}
.cid-v2sGxM4f2v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2miGEfd09 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2miGEfd09 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2miGEfd09 .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2miGEfd09 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2miGEfd09 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2miGEfd09 .mbr-section-title {
  color: #ffffff;
}
.cid-v2miGEfd09 .card-title {
  color: #ffffff;
}
.cid-v2miGEfd09 .mbr-text {
  color: #ffffff;
}
.cid-v2miGEfd09 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2miGEfd09 .link {
  color: #44c200;
}
.cid-v2miH9ndsB {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2miH9ndsB p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2miH9ndsB .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2miH9ndsB .collapsed {
  border: none;
}
.cid-v2miH9ndsB .collapsed span {
  transform: rotate(0deg);
}
.cid-v2miH9ndsB span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2miH9ndsB .panel-body {
  padding-top: 0.5rem;
}
.cid-v2miH9ndsB .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2miH9ndsB .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2miH9ndsB .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2miH9ndsB .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2miH9ndsB .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2miH9ndsB .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2miH9ndsB .panel-text {
  color: #ffffff;
}
.cid-v2miH9ndsB H4 {
  color: #ffffff;
}
.cid-v2miH9ndsB H2 {
  color: #ffffff;
}
.cid-v2miH9ndsB .mbr-section-text {
  color: #ffffff;
}
.cid-v2miH9ndsB H3 {
  color: #ffffff;
}
.cid-v2miHzSHnv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2miHzSHnv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2miHzSHnv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2miHzSHnv .row {
    text-align: center;
  }
  .cid-v2miHzSHnv .social-row {
    justify-content: center;
  }
}
.cid-v2miHzSHnv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2miHzSHnv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2miHzSHnv .list {
    margin-bottom: 0rem;
  }
}
.cid-v2miHzSHnv .mbr-text {
  color: #fafafa;
}
.cid-v2miHzSHnv .mbr-iconfont {
  color: black;
}
.cid-v2miHzSHnv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2aWUBMbR3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2aWUBMbR3 nav.navbar {
  position: fixed;
}
.cid-v2aWUBMbR3 .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-v2aWUBMbR3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2aWUBMbR3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2aWUBMbR3 .dropdown-item:hover,
.cid-v2aWUBMbR3 .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2aWUBMbR3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2aWUBMbR3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2aWUBMbR3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2aWUBMbR3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2aWUBMbR3 .nav-link {
  position: relative;
}
.cid-v2aWUBMbR3 .container {
  display: flex;
  margin: auto;
}
.cid-v2aWUBMbR3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2aWUBMbR3 .dropdown-menu,
.cid-v2aWUBMbR3 .navbar.opened {
  background: #353535 !important;
}
.cid-v2aWUBMbR3 .nav-item:focus,
.cid-v2aWUBMbR3 .nav-link:focus {
  outline: none;
}
.cid-v2aWUBMbR3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2aWUBMbR3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2aWUBMbR3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2aWUBMbR3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2aWUBMbR3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2aWUBMbR3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2aWUBMbR3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2aWUBMbR3 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2aWUBMbR3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2aWUBMbR3 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2aWUBMbR3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2aWUBMbR3 .navbar.collapsed {
  justify-content: center;
}
.cid-v2aWUBMbR3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2aWUBMbR3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2aWUBMbR3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2aWUBMbR3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2aWUBMbR3 .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-v2aWUBMbR3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2aWUBMbR3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2aWUBMbR3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2aWUBMbR3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2aWUBMbR3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2aWUBMbR3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2aWUBMbR3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2aWUBMbR3 .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-v2aWUBMbR3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2aWUBMbR3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2aWUBMbR3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2aWUBMbR3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2aWUBMbR3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2aWUBMbR3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2aWUBMbR3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2aWUBMbR3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2aWUBMbR3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2aWUBMbR3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2aWUBMbR3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2aWUBMbR3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2aWUBMbR3 .dropdown-item.active,
.cid-v2aWUBMbR3 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2aWUBMbR3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2aWUBMbR3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2aWUBMbR3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2aWUBMbR3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2aWUBMbR3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2aWUBMbR3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2aWUBMbR3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2aWUBMbR3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2aWUBMbR3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2aWUBMbR3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2aWUBMbR3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2aWUBMbR3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aWUBMbR3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2aWUBMbR3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2aWUBMbR3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aWUBMbR3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2aWUBMbR3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2aWUBMbR3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2aWUBMbR3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2aWUBMbR3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2aWUBMbR3 .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-v2aWUBMbR3 .navbar {
    height: 70px;
  }
  .cid-v2aWUBMbR3 .navbar.opened {
    height: auto;
  }
  .cid-v2aWUBMbR3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2gTNcYK0I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gTNcYK0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTNcYK0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gTNcYK0I .row {
    flex-direction: column-reverse;
  }
  .cid-v2gTNcYK0I .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gTNcYK0I .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gTNcYK0I .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gTNcYK0I .media-content,
.cid-v2gTNcYK0I .mbr-figure {
  align-self: center;
}
.cid-v2gTNcYK0I .mbr-figure iframe {
  width: 100%;
}
.cid-v2gTNcYK0I .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gTNcYK0I .mbr-text,
.cid-v2gTNcYK0I .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gTOZpLgW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2gTOZpLgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTOZpLgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gTOZpLgW .video-wrapper iframe {
  width: 100%;
}
.cid-v2gTOZpLgW .mbr-section-title,
.cid-v2gTOZpLgW .mbr-section-subtitle,
.cid-v2gTOZpLgW .mbr-text {
  text-align: center;
}
.cid-v2gTPBIfu6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2gTPBIfu6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTPBIfu6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gTPBIfu6 .video-wrapper iframe {
  width: 100%;
}
.cid-v2gTPBIfu6 .mbr-section-title,
.cid-v2gTPBIfu6 .mbr-section-subtitle,
.cid-v2gTPBIfu6 .mbr-text {
  text-align: center;
}
.cid-v2gTQ7EW84 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sz4GlnwH {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sz4GlnwH img,
.cid-v2sz4GlnwH .item-img {
  width: 100%;
}
.cid-v2sz4GlnwH .item:focus,
.cid-v2sz4GlnwH span:focus {
  outline: none;
}
.cid-v2sz4GlnwH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sz4GlnwH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sz4GlnwH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sz4GlnwH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sz4GlnwH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sz4GlnwH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sz4GlnwH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sz4GlnwH .mbr-section-title {
  color: #ffffff;
}
.cid-v2sz4GlnwH .mbr-text,
.cid-v2sz4GlnwH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sz4GlnwH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sz4GlnwH .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sz4GlnwH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sz5YyU1T {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sz5YyU1T img,
.cid-v2sz5YyU1T .item-img {
  width: 100%;
}
.cid-v2sz5YyU1T .item:focus,
.cid-v2sz5YyU1T span:focus {
  outline: none;
}
.cid-v2sz5YyU1T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sz5YyU1T .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sz5YyU1T .item {
  padding: 0;
  margin: 0;
}
.cid-v2sz5YyU1T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sz5YyU1T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sz5YyU1T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sz5YyU1T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sz5YyU1T .mbr-section-title {
  color: #232323;
}
.cid-v2sz5YyU1T .mbr-text,
.cid-v2sz5YyU1T .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sz5YyU1T .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sz5YyU1T .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sz5YyU1T .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sz6N2HSF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sz6N2HSF img,
.cid-v2sz6N2HSF .item-img {
  width: 100%;
}
.cid-v2sz6N2HSF .item:focus,
.cid-v2sz6N2HSF span:focus {
  outline: none;
}
.cid-v2sz6N2HSF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sz6N2HSF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sz6N2HSF .item {
  padding: 0;
  margin: 0;
}
.cid-v2sz6N2HSF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sz6N2HSF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sz6N2HSF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sz6N2HSF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sz6N2HSF .mbr-section-title {
  color: #ffffff;
}
.cid-v2sz6N2HSF .mbr-text,
.cid-v2sz6N2HSF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sz6N2HSF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sz6N2HSF .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sz6N2HSF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2szcw2RH9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2szcw2RH9 img,
.cid-v2szcw2RH9 .item-img {
  width: 100%;
}
.cid-v2szcw2RH9 .item:focus,
.cid-v2szcw2RH9 span:focus {
  outline: none;
}
.cid-v2szcw2RH9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szcw2RH9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2szcw2RH9 .item {
  padding: 0;
  margin: 0;
}
.cid-v2szcw2RH9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szcw2RH9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szcw2RH9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2szcw2RH9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szcw2RH9 .mbr-section-title {
  color: #ffffff;
}
.cid-v2szcw2RH9 .mbr-text,
.cid-v2szcw2RH9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2szcw2RH9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2szcw2RH9 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2szcw2RH9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2szdlsskR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2szdlsskR img,
.cid-v2szdlsskR .item-img {
  width: 100%;
}
.cid-v2szdlsskR .item:focus,
.cid-v2szdlsskR span:focus {
  outline: none;
}
.cid-v2szdlsskR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2szdlsskR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2szdlsskR .item {
  padding: 0;
  margin: 0;
}
.cid-v2szdlsskR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2szdlsskR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2szdlsskR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2szdlsskR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2szdlsskR .mbr-section-title {
  color: #ffffff;
}
.cid-v2szdlsskR .mbr-text,
.cid-v2szdlsskR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2szdlsskR .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2szdlsskR .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2szdlsskR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gTTNTv4j {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gTV3M9U2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2gTV3M9U2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTV3M9U2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2gTV3M9U2 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2gTV3M9U2 .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2gTV3M9U2 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2gTV3M9U2 .card {
    margin-bottom: 2rem;
  }
  .cid-v2gTV3M9U2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2rc2m12Q7 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2rc2m12Q7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rc2m12Q7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rc2m12Q7 .mbr-section-title {
  color: #000000;
}
.cid-v2syTxD1Rd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2syTxD1Rd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2syTxD1Rd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2syTxD1Rd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2syTxD1Rd .row {
  flex-direction: row-reverse;
}
.cid-v2syTxD1Rd img {
  width: 100%;
}
.cid-v2rc4pH2NX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2gTVAQAIf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2gTVAQAIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTVAQAIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gTVAQAIf .row {
    flex-direction: column-reverse;
  }
  .cid-v2gTVAQAIf .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gTVAQAIf .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gTVAQAIf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gTVAQAIf .media-content,
.cid-v2gTVAQAIf .mbr-figure {
  align-self: center;
}
.cid-v2gTVAQAIf .mbr-figure iframe {
  width: 100%;
}
.cid-v2gTVAQAIf .mbr-section-title {
  color: #ffb18a;
}
.cid-v2gTVAQAIf .mbr-text,
.cid-v2gTVAQAIf .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gTWqKF8p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2gTWqKF8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTWqKF8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2gTWqKF8p .row {
    flex-direction: column-reverse;
  }
  .cid-v2gTWqKF8p .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2gTWqKF8p .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2gTWqKF8p .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2gTWqKF8p .media-content,
.cid-v2gTWqKF8p .mbr-figure {
  align-self: center;
}
.cid-v2gTWqKF8p .mbr-figure iframe {
  width: 100%;
}
.cid-v2gTWqKF8p .mbr-section-title {
  color: #232323;
}
.cid-v2gTWqKF8p .mbr-text,
.cid-v2gTWqKF8p .mbr-section-btn {
  color: #000000;
}
.cid-v2rcGTtgW9 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rcGTtgW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rcGTtgW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rcGTtgW9 .mbr-text {
  color: #767676;
}
.cid-v2rcGTtgW9 .mbr-section-subtitle {
  color: #767676;
}
.cid-v2rcGTtgW9 .title .num {
  width: 100%;
  display: block;
}
.cid-v2rcGTtgW9 .title .card-title {
  z-index: 1;
}
.cid-v2rcGTtgW9 .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2rcGTtgW9 * {
    text-align: center !important;
  }
  .cid-v2rcGTtgW9 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2rcGTtgW9 .card-title,
.cid-v2rcGTtgW9 .card-img {
  color: #ffffff;
}
.cid-v2rcGTtgW9 .mbr-section-title,
.cid-v2rcGTtgW9 .card-box {
  color: #ffffff;
}
.cid-v2rcGTtgW9 .mbr-text,
.cid-v2rcGTtgW9 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2gTWVQBj1 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2gTWVQBj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2gTWVQBj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2gTWVQBj1 .container {
    max-width: 1400px;
  }
}
.cid-v2gTWVQBj1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2gTWVQBj1 .card-wrapper {
  margin-top: 3rem;
}
.cid-v2gTWVQBj1 .row {
  justify-content: center;
}
.cid-v2gTWVQBj1 .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2gTWVQBj1 .card-title,
.cid-v2gTWVQBj1 .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2gTWVQBj1 .mbr-section-title {
  color: #ffffff;
}
.cid-v2gTWVQBj1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gTXsF06H {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2syLuIskU {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2syLuIskU img,
.cid-v2syLuIskU .item-img {
  width: 100%;
}
.cid-v2syLuIskU .item:focus,
.cid-v2syLuIskU span:focus {
  outline: none;
}
.cid-v2syLuIskU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2syLuIskU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2syLuIskU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2syLuIskU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2syLuIskU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2syLuIskU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2syLuIskU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2syLuIskU .mbr-section-title {
  color: #ffb18a;
}
.cid-v2syLuIskU .mbr-text,
.cid-v2syLuIskU .mbr-section-btn {
  text-align: left;
}
.cid-v2syLuIskU .item-title {
  text-align: left;
}
.cid-v2syLuIskU .item-subtitle {
  text-align: left;
}
.cid-v2syLuIskU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gTZhDTpm {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2gTZhDTpm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2gTZhDTpm .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2gTZhDTpm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2gTZhDTpm .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2gTZhDTpm .mbr-section-title {
  color: #ffffff;
}
.cid-v2gTZhDTpm .card-title {
  color: #ffffff;
}
.cid-v2gTZhDTpm .mbr-text {
  color: #ffffff;
}
.cid-v2gTZhDTpm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2gTZhDTpm .link {
  color: #44c200;
}
.cid-v2gU25qrFN {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2gU25qrFN p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2gU25qrFN .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2gU25qrFN .collapsed {
  border: none;
}
.cid-v2gU25qrFN .collapsed span {
  transform: rotate(0deg);
}
.cid-v2gU25qrFN span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2gU25qrFN .panel-body {
  padding-top: 0.5rem;
}
.cid-v2gU25qrFN .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2gU25qrFN .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2gU25qrFN .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2gU25qrFN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2gU25qrFN .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2gU25qrFN .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2gU25qrFN .panel-text {
  color: #ffffff;
}
.cid-v2gU25qrFN H4 {
  color: #ffffff;
}
.cid-v2gU25qrFN H2 {
  color: #ffffff;
}
.cid-v2gU25qrFN .mbr-section-text {
  color: #ffffff;
}
.cid-v2gU25qrFN H3 {
  color: #ffffff;
}
.cid-v2gU2wuAse {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2gU2wuAse .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2gU2wuAse .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2gU2wuAse .row {
    text-align: center;
  }
  .cid-v2gU2wuAse .social-row {
    justify-content: center;
  }
}
.cid-v2gU2wuAse .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2gU2wuAse .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2gU2wuAse .list {
    margin-bottom: 0rem;
  }
}
.cid-v2gU2wuAse .mbr-text {
  color: #fafafa;
}
.cid-v2gU2wuAse .mbr-iconfont {
  color: black;
}
.cid-v2gU2wuAse .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1YGjtcfDM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1YGjtcfDM nav.navbar {
  position: fixed;
}
.cid-v1YGjtcfDM .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-v1YGjtcfDM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1YGjtcfDM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1YGjtcfDM .dropdown-item:hover,
.cid-v1YGjtcfDM .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v1YGjtcfDM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1YGjtcfDM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1YGjtcfDM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1YGjtcfDM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1YGjtcfDM .nav-link {
  position: relative;
}
.cid-v1YGjtcfDM .container {
  display: flex;
  margin: auto;
}
.cid-v1YGjtcfDM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1YGjtcfDM .dropdown-menu,
.cid-v1YGjtcfDM .navbar.opened {
  background: #353535 !important;
}
.cid-v1YGjtcfDM .nav-item:focus,
.cid-v1YGjtcfDM .nav-link:focus {
  outline: none;
}
.cid-v1YGjtcfDM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1YGjtcfDM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1YGjtcfDM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1YGjtcfDM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1YGjtcfDM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1YGjtcfDM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1YGjtcfDM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v1YGjtcfDM .navbar.opened {
  transition: all 0.3s;
}
.cid-v1YGjtcfDM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1YGjtcfDM .navbar .navbar-logo img {
  width: auto;
}
.cid-v1YGjtcfDM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1YGjtcfDM .navbar.collapsed {
  justify-content: center;
}
.cid-v1YGjtcfDM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1YGjtcfDM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v1YGjtcfDM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1YGjtcfDM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1YGjtcfDM .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-v1YGjtcfDM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1YGjtcfDM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1YGjtcfDM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1YGjtcfDM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1YGjtcfDM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1YGjtcfDM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1YGjtcfDM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1YGjtcfDM .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-v1YGjtcfDM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1YGjtcfDM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1YGjtcfDM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1YGjtcfDM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1YGjtcfDM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1YGjtcfDM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1YGjtcfDM .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1YGjtcfDM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1YGjtcfDM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1YGjtcfDM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1YGjtcfDM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1YGjtcfDM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1YGjtcfDM .dropdown-item.active,
.cid-v1YGjtcfDM .dropdown-item:active {
  background-color: transparent;
}
.cid-v1YGjtcfDM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1YGjtcfDM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1YGjtcfDM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1YGjtcfDM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v1YGjtcfDM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1YGjtcfDM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1YGjtcfDM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1YGjtcfDM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1YGjtcfDM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1YGjtcfDM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1YGjtcfDM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1YGjtcfDM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1YGjtcfDM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1YGjtcfDM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1YGjtcfDM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1YGjtcfDM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1YGjtcfDM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1YGjtcfDM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1YGjtcfDM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1YGjtcfDM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1YGjtcfDM .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-v1YGjtcfDM .navbar {
    height: 70px;
  }
  .cid-v1YGjtcfDM .navbar.opened {
    height: auto;
  }
  .cid-v1YGjtcfDM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2spsAQ2mM {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/produtora-de-video-intitucional-1920x1057.jpg");
}
.cid-v2spsAQ2mM .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-v2spsAQ2mM .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-v2spsAQ2mM .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-v2spsAQ2mM .mbr-text {
  color: #ffffff;
}
.cid-v2spsAQ2mM .card {
  padding-bottom: 1.5rem;
}
.cid-v2spsAQ2mM .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2spsAQ2mM .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-v2spsAQ2mM .card-wrapper .card-title {
  color: #ffffff;
}
.cid-v2spsAQ2mM H1 {
  color: #ffffff;
}
.cid-v2spsAQ2mM .mbr-text,
.cid-v2spsAQ2mM .mbr-section-btn {
  color: #ffffff;
}
.cid-v2spsAQ2mM .card-wrapper .card-title,
.cid-v2spsAQ2mM .card-box {
  color: #ffffff;
}
.cid-v2spMaXJKF {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2spMaXJKF img,
.cid-v2spMaXJKF .item-img {
  width: 100%;
}
.cid-v2spMaXJKF .item:focus,
.cid-v2spMaXJKF span:focus {
  outline: none;
}
.cid-v2spMaXJKF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2spMaXJKF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2spMaXJKF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2spMaXJKF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2spMaXJKF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2spMaXJKF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2spMaXJKF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2spMaXJKF .mbr-section-title {
  color: #ffffff;
}
.cid-v2spMaXJKF .mbr-text,
.cid-v2spMaXJKF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2spMaXJKF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2spMaXJKF .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2spMaXJKF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sqbkwjb4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sqbkwjb4 img,
.cid-v2sqbkwjb4 .item-img {
  width: 100%;
}
.cid-v2sqbkwjb4 .item:focus,
.cid-v2sqbkwjb4 span:focus {
  outline: none;
}
.cid-v2sqbkwjb4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sqbkwjb4 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sqbkwjb4 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sqbkwjb4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sqbkwjb4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sqbkwjb4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sqbkwjb4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sqbkwjb4 .mbr-section-title {
  color: #232323;
}
.cid-v2sqbkwjb4 .mbr-text,
.cid-v2sqbkwjb4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqbkwjb4 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqbkwjb4 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sqbkwjb4 .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sqckqDew {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sqckqDew img,
.cid-v2sqckqDew .item-img {
  width: 100%;
}
.cid-v2sqckqDew .item:focus,
.cid-v2sqckqDew span:focus {
  outline: none;
}
.cid-v2sqckqDew .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sqckqDew .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sqckqDew .item {
  padding: 0;
  margin: 0;
}
.cid-v2sqckqDew .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sqckqDew .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sqckqDew .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sqckqDew .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sqckqDew .mbr-section-title {
  color: #ffffff;
}
.cid-v2sqckqDew .mbr-text,
.cid-v2sqckqDew .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqckqDew .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqckqDew .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sqckqDew .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sqd3tri9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sqd3tri9 img,
.cid-v2sqd3tri9 .item-img {
  width: 100%;
}
.cid-v2sqd3tri9 .item:focus,
.cid-v2sqd3tri9 span:focus {
  outline: none;
}
.cid-v2sqd3tri9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sqd3tri9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sqd3tri9 .item {
  padding: 0;
  margin: 0;
}
.cid-v2sqd3tri9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sqd3tri9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sqd3tri9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sqd3tri9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sqd3tri9 .mbr-section-title {
  color: #ffffff;
}
.cid-v2sqd3tri9 .mbr-text,
.cid-v2sqd3tri9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqd3tri9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqd3tri9 .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sqd3tri9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sqh56u0i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sqh56u0i img,
.cid-v2sqh56u0i .item-img {
  width: 100%;
}
.cid-v2sqh56u0i .item:focus,
.cid-v2sqh56u0i span:focus {
  outline: none;
}
.cid-v2sqh56u0i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sqh56u0i .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sqh56u0i .item {
  padding: 0;
  margin: 0;
}
.cid-v2sqh56u0i .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sqh56u0i .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sqh56u0i .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sqh56u0i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sqh56u0i .mbr-section-title {
  color: #ffffff;
}
.cid-v2sqh56u0i .mbr-text,
.cid-v2sqh56u0i .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqh56u0i .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sqh56u0i .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sqh56u0i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mqDneIDk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mqBH68qQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2mqBH68qQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mqBH68qQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mqBH68qQ .mbr-section-title {
  color: #000000;
}
.cid-v2sqnhZCEb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sqnhZCEb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sqnhZCEb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sqnhZCEb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sqnhZCEb .row {
  flex-direction: row-reverse;
}
.cid-v2sqnhZCEb img {
  width: 100%;
}
.cid-v2sqpSTXkr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2mqLJJYiT {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2mqLJJYiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mqLJJYiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mqLJJYiT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2mqLJJYiT .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2mqLJJYiT .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2mqLJJYiT .card {
    margin-bottom: 2rem;
  }
  .cid-v2mqLJJYiT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2mqPcEEj0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mqPcEEj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mqPcEEj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mqPcEEj0 .row {
    flex-direction: column-reverse;
  }
  .cid-v2mqPcEEj0 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mqPcEEj0 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mqPcEEj0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mqPcEEj0 .media-content,
.cid-v2mqPcEEj0 .mbr-figure {
  align-self: center;
}
.cid-v2mqPcEEj0 .mbr-figure iframe {
  width: 100%;
}
.cid-v2mqPcEEj0 .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mqPcEEj0 .mbr-text,
.cid-v2mqPcEEj0 .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mqPLLyoa {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mqPLLyoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mqPLLyoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mqPLLyoa .mbr-text {
  color: #767676;
}
.cid-v2mqPLLyoa .mbr-section-subtitle {
  color: #767676;
}
.cid-v2mqPLLyoa .title .num {
  width: 100%;
  display: block;
}
.cid-v2mqPLLyoa .title .card-title {
  z-index: 1;
}
.cid-v2mqPLLyoa .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2mqPLLyoa * {
    text-align: center !important;
  }
  .cid-v2mqPLLyoa .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2mqPLLyoa .card-title,
.cid-v2mqPLLyoa .card-img {
  color: #ffffff;
}
.cid-v2mqPLLyoa .mbr-section-title,
.cid-v2mqPLLyoa .card-box {
  color: #ffffff;
}
.cid-v2mqPLLyoa .mbr-text,
.cid-v2mqPLLyoa .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mqTQXjVG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2mqTQXjVG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mqTQXjVG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mqTQXjVG .row {
    flex-direction: column-reverse;
  }
  .cid-v2mqTQXjVG .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mqTQXjVG .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mqTQXjVG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mqTQXjVG .media-content,
.cid-v2mqTQXjVG .mbr-figure {
  align-self: center;
}
.cid-v2mqTQXjVG .mbr-figure iframe {
  width: 100%;
}
.cid-v2mqTQXjVG .mbr-section-title {
  color: #232323;
}
.cid-v2mqTQXjVG .mbr-text,
.cid-v2mqTQXjVG .mbr-section-btn {
  color: #000000;
}
.cid-v2sqtfmIwh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #353535;
}
.cid-v2sqtfmIwh .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v2sqtfmIwh .team-card:hover {
  transform: translateY(-10px);
}
.cid-v2sqtfmIwh .card-wrap {
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v2sqtfmIwh .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v2sqtfmIwh .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v2sqtfmIwh .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2sqtfmIwh .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v2sqtfmIwh .social-row {
  text-align: center;
}
.cid-v2sqtfmIwh .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 #c37a7a;
  transition: all 0.3s;
}
.cid-v2sqtfmIwh .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #c37a7a;
  font-size: 1.5rem;
}
.cid-v2sqtfmIwh .social-row .soc-item:hover {
  background-color: #c37a7a;
}
.cid-v2sqtfmIwh .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v2sqtfmIwh .card-title,
.cid-v2sqtfmIwh .social-row {
  color: #c7493a;
}
.cid-v2sqtfmIwh .card-text,
.cid-v2sqtfmIwh .mbr-section-btn,
.cid-v2sqtfmIwh .social-row {
  color: #ffffff;
}
.cid-v2sqtfmIwh .mbr-role,
.cid-v2sqtfmIwh .social-row {
  color: #c37a7a;
}
.cid-v2sqtfmIwh .mbr-section-title {
  color: #ffffff;
}
.cid-v2mrlWvKZc {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mraTBa4J {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2mraTBa4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mraTBa4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2mraTBa4J .container {
    max-width: 1400px;
  }
}
.cid-v2mraTBa4J .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2mraTBa4J .card-wrapper {
  margin-top: 3rem;
}
.cid-v2mraTBa4J .row {
  justify-content: center;
}
.cid-v2mraTBa4J .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2mraTBa4J .card-title,
.cid-v2mraTBa4J .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2mraTBa4J .mbr-section-title {
  color: #ffffff;
}
.cid-v2mraTBa4J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mrbngDxf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2mr9kFR8O {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #d3d7d9;
}
.cid-v2mr9kFR8O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mr9kFR8O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2mr9kFR8O .container {
    max-width: 1400px;
  }
}
.cid-v2mr9kFR8O .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2mr9kFR8O .card-wrapper {
  margin-top: 3rem;
}
.cid-v2mr9kFR8O .row {
  justify-content: center;
}
.cid-v2mre0p6pc {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #d3d7d9;
}
.cid-v2sqyJFlEc {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sqyJFlEc img,
.cid-v2sqyJFlEc .item-img {
  width: 100%;
}
.cid-v2sqyJFlEc .item:focus,
.cid-v2sqyJFlEc span:focus {
  outline: none;
}
.cid-v2sqyJFlEc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sqyJFlEc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sqyJFlEc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sqyJFlEc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sqyJFlEc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sqyJFlEc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sqyJFlEc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sqyJFlEc .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sqyJFlEc .mbr-text,
.cid-v2sqyJFlEc .mbr-section-btn {
  text-align: left;
}
.cid-v2sqyJFlEc .item-title {
  text-align: left;
}
.cid-v2sqyJFlEc .item-subtitle {
  text-align: left;
}
.cid-v2sqyJFlEc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mreSGann {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mreSGann .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2mreSGann .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2mreSGann .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mreSGann .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2mreSGann .mbr-section-title {
  color: #ffffff;
}
.cid-v2mreSGann .card-title {
  color: #ffffff;
}
.cid-v2mreSGann .mbr-text {
  color: #ffffff;
}
.cid-v2mreSGann .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mreSGann .link {
  color: #44c200;
}
.cid-v2mrfrCoCi {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2mrfrCoCi p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2mrfrCoCi .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2mrfrCoCi .collapsed {
  border: none;
}
.cid-v2mrfrCoCi .collapsed span {
  transform: rotate(0deg);
}
.cid-v2mrfrCoCi span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2mrfrCoCi .panel-body {
  padding-top: 0.5rem;
}
.cid-v2mrfrCoCi .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2mrfrCoCi .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2mrfrCoCi .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2mrfrCoCi .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2mrfrCoCi .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2mrfrCoCi .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2mrfrCoCi .panel-text {
  color: #ffffff;
}
.cid-v2mrfrCoCi H4 {
  color: #ffffff;
}
.cid-v2mrfrCoCi H2 {
  color: #ffffff;
}
.cid-v2mrfrCoCi .mbr-section-text {
  color: #ffffff;
}
.cid-v2mrfrCoCi H3 {
  color: #ffffff;
}
.cid-v2mrgg8m6t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2mrgg8m6t .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2mrgg8m6t .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2mrgg8m6t .row {
    text-align: center;
  }
  .cid-v2mrgg8m6t .social-row {
    justify-content: center;
  }
}
.cid-v2mrgg8m6t .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2mrgg8m6t .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mrgg8m6t .list {
    margin-bottom: 0rem;
  }
}
.cid-v2mrgg8m6t .mbr-text {
  color: #fafafa;
}
.cid-v2mrgg8m6t .mbr-iconfont {
  color: black;
}
.cid-v2mrgg8m6t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v29NSFlYdE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v29NSFlYdE nav.navbar {
  position: fixed;
}
.cid-v29NSFlYdE .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-v29NSFlYdE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v29NSFlYdE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v29NSFlYdE .dropdown-item:hover,
.cid-v29NSFlYdE .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v29NSFlYdE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v29NSFlYdE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v29NSFlYdE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v29NSFlYdE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v29NSFlYdE .nav-link {
  position: relative;
}
.cid-v29NSFlYdE .container {
  display: flex;
  margin: auto;
}
.cid-v29NSFlYdE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v29NSFlYdE .dropdown-menu,
.cid-v29NSFlYdE .navbar.opened {
  background: #353535 !important;
}
.cid-v29NSFlYdE .nav-item:focus,
.cid-v29NSFlYdE .nav-link:focus {
  outline: none;
}
.cid-v29NSFlYdE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v29NSFlYdE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v29NSFlYdE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v29NSFlYdE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v29NSFlYdE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v29NSFlYdE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v29NSFlYdE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v29NSFlYdE .navbar.opened {
  transition: all 0.3s;
}
.cid-v29NSFlYdE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v29NSFlYdE .navbar .navbar-logo img {
  width: auto;
}
.cid-v29NSFlYdE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v29NSFlYdE .navbar.collapsed {
  justify-content: center;
}
.cid-v29NSFlYdE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v29NSFlYdE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v29NSFlYdE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v29NSFlYdE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v29NSFlYdE .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-v29NSFlYdE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v29NSFlYdE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v29NSFlYdE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v29NSFlYdE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v29NSFlYdE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v29NSFlYdE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v29NSFlYdE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v29NSFlYdE .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-v29NSFlYdE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v29NSFlYdE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v29NSFlYdE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v29NSFlYdE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v29NSFlYdE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v29NSFlYdE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v29NSFlYdE .navbar.navbar-short {
  min-height: 60px;
}
.cid-v29NSFlYdE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v29NSFlYdE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v29NSFlYdE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v29NSFlYdE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v29NSFlYdE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v29NSFlYdE .dropdown-item.active,
.cid-v29NSFlYdE .dropdown-item:active {
  background-color: transparent;
}
.cid-v29NSFlYdE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v29NSFlYdE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v29NSFlYdE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v29NSFlYdE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v29NSFlYdE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v29NSFlYdE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v29NSFlYdE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v29NSFlYdE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v29NSFlYdE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v29NSFlYdE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v29NSFlYdE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v29NSFlYdE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29NSFlYdE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v29NSFlYdE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v29NSFlYdE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29NSFlYdE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v29NSFlYdE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v29NSFlYdE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v29NSFlYdE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v29NSFlYdE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v29NSFlYdE .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-v29NSFlYdE .navbar {
    height: 70px;
  }
  .cid-v29NSFlYdE .navbar.opened {
    height: auto;
  }
  .cid-v29NSFlYdE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2mwMxZU5H {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mwMxZU5H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mwMxZU5H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mwMxZU5H .row {
    flex-direction: column-reverse;
  }
  .cid-v2mwMxZU5H .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mwMxZU5H .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mwMxZU5H .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mwMxZU5H .media-content,
.cid-v2mwMxZU5H .mbr-figure {
  align-self: center;
}
.cid-v2mwMxZU5H .mbr-figure iframe {
  width: 100%;
}
.cid-v2mwMxZU5H .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mwMxZU5H .mbr-text,
.cid-v2mwMxZU5H .mbr-section-btn {
  color: #ffffff;
}
.cid-v2myTLedio {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2myTLedio .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2myTLedio .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2myTLedio .video-wrapper iframe {
  width: 100%;
}
.cid-v2myTLedio .mbr-section-title,
.cid-v2myTLedio .mbr-section-subtitle,
.cid-v2myTLedio .mbr-text {
  text-align: center;
}
.cid-v2myU9LVNq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2myU9LVNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2myU9LVNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2myU9LVNq .video-wrapper iframe {
  width: 100%;
}
.cid-v2myU9LVNq .mbr-section-title,
.cid-v2myU9LVNq .mbr-section-subtitle,
.cid-v2myU9LVNq .mbr-text {
  text-align: center;
}
.cid-v2mzy2wXqx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2mzy2wXqx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mzy2wXqx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mzy2wXqx .video-wrapper iframe {
  width: 100%;
}
.cid-v2mzy2wXqx .mbr-section-title,
.cid-v2mzy2wXqx .mbr-section-subtitle,
.cid-v2mzy2wXqx .mbr-text {
  text-align: center;
}
.cid-v2mAUrYdFh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2srNGsmdH {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2srNGsmdH img,
.cid-v2srNGsmdH .item-img {
  width: 100%;
}
.cid-v2srNGsmdH .item:focus,
.cid-v2srNGsmdH span:focus {
  outline: none;
}
.cid-v2srNGsmdH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2srNGsmdH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2srNGsmdH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2srNGsmdH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2srNGsmdH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2srNGsmdH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2srNGsmdH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2srNGsmdH .mbr-section-title {
  color: #ffffff;
}
.cid-v2srNGsmdH .mbr-text,
.cid-v2srNGsmdH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2srNGsmdH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2srNGsmdH .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2srNGsmdH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sslz4uTb {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sslz4uTb img,
.cid-v2sslz4uTb .item-img {
  width: 100%;
}
.cid-v2sslz4uTb .item:focus,
.cid-v2sslz4uTb span:focus {
  outline: none;
}
.cid-v2sslz4uTb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sslz4uTb .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sslz4uTb .item {
  padding: 0;
  margin: 0;
}
.cid-v2sslz4uTb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sslz4uTb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sslz4uTb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sslz4uTb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sslz4uTb .mbr-section-title {
  color: #232323;
}
.cid-v2sslz4uTb .mbr-text,
.cid-v2sslz4uTb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sslz4uTb .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sslz4uTb .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sslz4uTb .mbr-section-subtitle {
  color: #000000;
}
.cid-v2ssnAJSJD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2ssnAJSJD img,
.cid-v2ssnAJSJD .item-img {
  width: 100%;
}
.cid-v2ssnAJSJD .item:focus,
.cid-v2ssnAJSJD span:focus {
  outline: none;
}
.cid-v2ssnAJSJD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2ssnAJSJD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2ssnAJSJD .item {
  padding: 0;
  margin: 0;
}
.cid-v2ssnAJSJD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2ssnAJSJD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ssnAJSJD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2ssnAJSJD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2ssnAJSJD .mbr-section-title {
  color: #ffffff;
}
.cid-v2ssnAJSJD .mbr-text,
.cid-v2ssnAJSJD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2ssnAJSJD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2ssnAJSJD .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2ssnAJSJD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sss2kKEc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sss2kKEc img,
.cid-v2sss2kKEc .item-img {
  width: 100%;
}
.cid-v2sss2kKEc .item:focus,
.cid-v2sss2kKEc span:focus {
  outline: none;
}
.cid-v2sss2kKEc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sss2kKEc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sss2kKEc .item {
  padding: 0;
  margin: 0;
}
.cid-v2sss2kKEc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sss2kKEc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sss2kKEc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sss2kKEc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sss2kKEc .mbr-section-title {
  color: #ffffff;
}
.cid-v2sss2kKEc .mbr-text,
.cid-v2sss2kKEc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sss2kKEc .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sss2kKEc .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sss2kKEc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2ssmW22VD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2ssmW22VD img,
.cid-v2ssmW22VD .item-img {
  width: 100%;
}
.cid-v2ssmW22VD .item:focus,
.cid-v2ssmW22VD span:focus {
  outline: none;
}
.cid-v2ssmW22VD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2ssmW22VD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2ssmW22VD .item {
  padding: 0;
  margin: 0;
}
.cid-v2ssmW22VD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2ssmW22VD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ssmW22VD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2ssmW22VD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2ssmW22VD .mbr-section-title {
  color: #ffffff;
}
.cid-v2ssmW22VD .mbr-text,
.cid-v2ssmW22VD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2ssmW22VD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2ssmW22VD .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2ssmW22VD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mB2C0JWN {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2mB5YWRiq {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2mB5YWRiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mB5YWRiq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mB5YWRiq .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2mB5YWRiq .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2mB5YWRiq .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2mB5YWRiq .card {
    margin-bottom: 2rem;
  }
  .cid-v2mB5YWRiq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2mB8IdG3V {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mB8IdG3V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mB8IdG3V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2mB8IdG3V .mbr-text {
  color: #767676;
}
.cid-v2mB8IdG3V .mbr-section-subtitle {
  color: #767676;
}
.cid-v2mB8IdG3V .title .num {
  width: 100%;
  display: block;
}
.cid-v2mB8IdG3V .title .card-title {
  z-index: 1;
}
.cid-v2mB8IdG3V .num {
  color: #ffb18a;
}
@media (max-width: 767px) {
  .cid-v2mB8IdG3V * {
    text-align: center !important;
  }
  .cid-v2mB8IdG3V .content-column {
    margin-bottom: 2rem;
  }
}
.cid-v2mB8IdG3V .card-title,
.cid-v2mB8IdG3V .card-img {
  color: #ffffff;
}
.cid-v2mB8IdG3V .mbr-section-title,
.cid-v2mB8IdG3V .card-box {
  color: #ffffff;
}
.cid-v2mB8IdG3V .mbr-text,
.cid-v2mB8IdG3V .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mB6vfiKa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2mB6vfiKa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mB6vfiKa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mB6vfiKa .row {
    flex-direction: column-reverse;
  }
  .cid-v2mB6vfiKa .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mB6vfiKa .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mB6vfiKa .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mB6vfiKa .media-content,
.cid-v2mB6vfiKa .mbr-figure {
  align-self: center;
}
.cid-v2mB6vfiKa .mbr-figure iframe {
  width: 100%;
}
.cid-v2mB6vfiKa .mbr-section-title {
  color: #ffb18a;
}
.cid-v2mB6vfiKa .mbr-text,
.cid-v2mB6vfiKa .mbr-section-btn {
  color: #ffffff;
}
.cid-v2mBd7OjKg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2mBd7OjKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mBd7OjKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2mBd7OjKg .row {
    flex-direction: column-reverse;
  }
  .cid-v2mBd7OjKg .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2mBd7OjKg .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2mBd7OjKg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2mBd7OjKg .media-content,
.cid-v2mBd7OjKg .mbr-figure {
  align-self: center;
}
.cid-v2mBd7OjKg .mbr-figure iframe {
  width: 100%;
}
.cid-v2mBd7OjKg .mbr-section-title {
  color: #232323;
}
.cid-v2mBd7OjKg .mbr-text,
.cid-v2mBd7OjKg .mbr-section-btn {
  color: #000000;
}
.cid-v2mBgjImNd {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2mBgjImNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2mBgjImNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2mBgjImNd .container {
    max-width: 1400px;
  }
}
.cid-v2mBgjImNd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2mBgjImNd .card-wrapper {
  margin-top: 3rem;
}
.cid-v2mBgjImNd .row {
  justify-content: center;
}
.cid-v2mBgjImNd .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2mBgjImNd .card-title,
.cid-v2mBgjImNd .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2mBgjImNd .mbr-section-title {
  color: #ffffff;
}
.cid-v2mBgjImNd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mBgOA14x {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2ssvOb19C {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2ssvOb19C img,
.cid-v2ssvOb19C .item-img {
  width: 100%;
}
.cid-v2ssvOb19C .item:focus,
.cid-v2ssvOb19C span:focus {
  outline: none;
}
.cid-v2ssvOb19C .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2ssvOb19C .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2ssvOb19C .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2ssvOb19C .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2ssvOb19C .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2ssvOb19C .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2ssvOb19C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2ssvOb19C .mbr-section-title {
  color: #ffb18a;
}
.cid-v2ssvOb19C .mbr-text,
.cid-v2ssvOb19C .mbr-section-btn {
  text-align: left;
}
.cid-v2ssvOb19C .item-title {
  text-align: left;
}
.cid-v2ssvOb19C .item-subtitle {
  text-align: left;
}
.cid-v2ssvOb19C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mBkN2kSw {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2mBkN2kSw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2mBkN2kSw .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2mBkN2kSw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2mBkN2kSw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2mBkN2kSw .mbr-section-title {
  color: #ffffff;
}
.cid-v2mBkN2kSw .card-title {
  color: #ffffff;
}
.cid-v2mBkN2kSw .mbr-text {
  color: #ffffff;
}
.cid-v2mBkN2kSw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2mBkN2kSw .link {
  color: #44c200;
}
.cid-v2mBlkxQvC {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2mBlkxQvC p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2mBlkxQvC .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2mBlkxQvC .collapsed {
  border: none;
}
.cid-v2mBlkxQvC .collapsed span {
  transform: rotate(0deg);
}
.cid-v2mBlkxQvC span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2mBlkxQvC .panel-body {
  padding-top: 0.5rem;
}
.cid-v2mBlkxQvC .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2mBlkxQvC .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2mBlkxQvC .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2mBlkxQvC .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2mBlkxQvC .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2mBlkxQvC .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2mBlkxQvC .panel-text {
  color: #ffffff;
}
.cid-v2mBlkxQvC H4 {
  color: #ffffff;
}
.cid-v2mBlkxQvC H2 {
  color: #ffffff;
}
.cid-v2mBlkxQvC .mbr-section-text {
  color: #ffffff;
}
.cid-v2mBlkxQvC H3 {
  color: #ffffff;
}
.cid-v2mBlPbXDV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2mBlPbXDV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2mBlPbXDV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2mBlPbXDV .row {
    text-align: center;
  }
  .cid-v2mBlPbXDV .social-row {
    justify-content: center;
  }
}
.cid-v2mBlPbXDV .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2mBlPbXDV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2mBlPbXDV .list {
    margin-bottom: 0rem;
  }
}
.cid-v2mBlPbXDV .mbr-text {
  color: #fafafa;
}
.cid-v2mBlPbXDV .mbr-iconfont {
  color: black;
}
.cid-v2mBlPbXDV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2rsNYFNQ0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2rsNYFNQ0 nav.navbar {
  position: fixed;
}
.cid-v2rsNYFNQ0 .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-v2rsNYFNQ0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2rsNYFNQ0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2rsNYFNQ0 .dropdown-item:hover,
.cid-v2rsNYFNQ0 .dropdown-item:focus {
  background: #fafafa !important;
  color: white !important;
}
.cid-v2rsNYFNQ0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2rsNYFNQ0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2rsNYFNQ0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2rsNYFNQ0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2rsNYFNQ0 .nav-link {
  position: relative;
}
.cid-v2rsNYFNQ0 .container {
  display: flex;
  margin: auto;
}
.cid-v2rsNYFNQ0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2rsNYFNQ0 .dropdown-menu,
.cid-v2rsNYFNQ0 .navbar.opened {
  background: #353535 !important;
}
.cid-v2rsNYFNQ0 .nav-item:focus,
.cid-v2rsNYFNQ0 .nav-link:focus {
  outline: none;
}
.cid-v2rsNYFNQ0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2rsNYFNQ0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2rsNYFNQ0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2rsNYFNQ0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2rsNYFNQ0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2rsNYFNQ0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2rsNYFNQ0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-v2rsNYFNQ0 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2rsNYFNQ0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2rsNYFNQ0 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2rsNYFNQ0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2rsNYFNQ0 .navbar.collapsed {
  justify-content: center;
}
.cid-v2rsNYFNQ0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2rsNYFNQ0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2rsNYFNQ0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2rsNYFNQ0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2rsNYFNQ0 .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-v2rsNYFNQ0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2rsNYFNQ0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2rsNYFNQ0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2rsNYFNQ0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2rsNYFNQ0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2rsNYFNQ0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2rsNYFNQ0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2rsNYFNQ0 .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-v2rsNYFNQ0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2rsNYFNQ0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2rsNYFNQ0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2rsNYFNQ0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2rsNYFNQ0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2rsNYFNQ0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v2rsNYFNQ0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2rsNYFNQ0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2rsNYFNQ0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2rsNYFNQ0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2rsNYFNQ0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2rsNYFNQ0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2rsNYFNQ0 .dropdown-item.active,
.cid-v2rsNYFNQ0 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2rsNYFNQ0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2rsNYFNQ0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2rsNYFNQ0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2rsNYFNQ0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-v2rsNYFNQ0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2rsNYFNQ0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2rsNYFNQ0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2rsNYFNQ0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2rsNYFNQ0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2rsNYFNQ0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2rsNYFNQ0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2rsNYFNQ0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2rsNYFNQ0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2rsNYFNQ0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2rsNYFNQ0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2rsNYFNQ0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2rsNYFNQ0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2rsNYFNQ0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2rsNYFNQ0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2rsNYFNQ0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2rsNYFNQ0 .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-v2rsNYFNQ0 .navbar {
    height: 70px;
  }
  .cid-v2rsNYFNQ0 .navbar.opened {
    height: auto;
  }
  .cid-v2rsNYFNQ0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2rsNZPVOf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2rsNZPVOf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsNZPVOf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2rsNZPVOf .row {
    flex-direction: column-reverse;
  }
  .cid-v2rsNZPVOf .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2rsNZPVOf .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2rsNZPVOf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2rsNZPVOf .media-content,
.cid-v2rsNZPVOf .mbr-figure {
  align-self: center;
}
.cid-v2rsNZPVOf .mbr-figure iframe {
  width: 100%;
}
.cid-v2rsNZPVOf .mbr-section-title {
  color: #ffb18a;
}
.cid-v2rsNZPVOf .mbr-text,
.cid-v2rsNZPVOf .mbr-section-btn {
  color: #ffffff;
}
.cid-v2rsO0WXjV {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2rsO0WXjV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsO0WXjV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rsO0WXjV .video-wrapper iframe {
  width: 100%;
}
.cid-v2rsO0WXjV .mbr-section-title,
.cid-v2rsO0WXjV .mbr-section-subtitle,
.cid-v2rsO0WXjV .mbr-text {
  text-align: center;
}
.cid-v2rsO21JaJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2rsO21JaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsO21JaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rsO21JaJ .video-wrapper iframe {
  width: 100%;
}
.cid-v2rsO21JaJ .mbr-section-title,
.cid-v2rsO21JaJ .mbr-section-subtitle,
.cid-v2rsO21JaJ .mbr-text {
  text-align: center;
}
.cid-v2rw0yQqBz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2rw0yQqBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rw0yQqBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rw0yQqBz .video-wrapper iframe {
  width: 100%;
}
.cid-v2rw0yQqBz .mbr-section-title,
.cid-v2rw0yQqBz .mbr-section-subtitle,
.cid-v2rw0yQqBz .mbr-text {
  text-align: center;
}
.cid-v2rsO4jGSh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2sAdZFaht {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #707070;
}
.cid-v2sAdZFaht img,
.cid-v2sAdZFaht .item-img {
  width: 100%;
}
.cid-v2sAdZFaht .item:focus,
.cid-v2sAdZFaht span:focus {
  outline: none;
}
.cid-v2sAdZFaht .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sAdZFaht .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #353535;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sAdZFaht .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sAdZFaht .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sAdZFaht .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sAdZFaht .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sAdZFaht .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sAdZFaht .mbr-section-title {
  color: #ffffff;
}
.cid-v2sAdZFaht .mbr-text,
.cid-v2sAdZFaht .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAdZFaht .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAdZFaht .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sAdZFaht .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sAf9ifwL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sAf9ifwL img,
.cid-v2sAf9ifwL .item-img {
  width: 100%;
}
.cid-v2sAf9ifwL .item:focus,
.cid-v2sAf9ifwL span:focus {
  outline: none;
}
.cid-v2sAf9ifwL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sAf9ifwL .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sAf9ifwL .item {
  padding: 0;
  margin: 0;
}
.cid-v2sAf9ifwL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sAf9ifwL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sAf9ifwL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sAf9ifwL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sAf9ifwL .mbr-section-title {
  color: #232323;
}
.cid-v2sAf9ifwL .mbr-text,
.cid-v2sAf9ifwL .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAf9ifwL .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAf9ifwL .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sAf9ifwL .mbr-section-subtitle {
  color: #000000;
}
.cid-v2sAggLUST {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sAggLUST img,
.cid-v2sAggLUST .item-img {
  width: 100%;
}
.cid-v2sAggLUST .item:focus,
.cid-v2sAggLUST span:focus {
  outline: none;
}
.cid-v2sAggLUST .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sAggLUST .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sAggLUST .item {
  padding: 0;
  margin: 0;
}
.cid-v2sAggLUST .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sAggLUST .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sAggLUST .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sAggLUST .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sAggLUST .mbr-section-title {
  color: #ffffff;
}
.cid-v2sAggLUST .mbr-text,
.cid-v2sAggLUST .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAggLUST .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAggLUST .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sAggLUST .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sAh6b1SI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sAh6b1SI img,
.cid-v2sAh6b1SI .item-img {
  width: 100%;
}
.cid-v2sAh6b1SI .item:focus,
.cid-v2sAh6b1SI span:focus {
  outline: none;
}
.cid-v2sAh6b1SI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sAh6b1SI .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sAh6b1SI .item {
  padding: 0;
  margin: 0;
}
.cid-v2sAh6b1SI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sAh6b1SI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sAh6b1SI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sAh6b1SI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sAh6b1SI .mbr-section-title {
  color: #ffffff;
}
.cid-v2sAh6b1SI .mbr-text,
.cid-v2sAh6b1SI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAh6b1SI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAh6b1SI .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sAh6b1SI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2sAhKYbqo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sAhKYbqo img,
.cid-v2sAhKYbqo .item-img {
  width: 100%;
}
.cid-v2sAhKYbqo .item:focus,
.cid-v2sAhKYbqo span:focus {
  outline: none;
}
.cid-v2sAhKYbqo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sAhKYbqo .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2sAhKYbqo .item {
  padding: 0;
  margin: 0;
}
.cid-v2sAhKYbqo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sAhKYbqo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sAhKYbqo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2sAhKYbqo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sAhKYbqo .mbr-section-title {
  color: #ffffff;
}
.cid-v2sAhKYbqo .mbr-text,
.cid-v2sAhKYbqo .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAhKYbqo .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2sAhKYbqo .item-subtitle {
  text-align: left;
  color: #ffe161;
}
.cid-v2sAhKYbqo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2rsObSL8u {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2rsOcVfVl {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #d3d7d9;
}
.cid-v2rsOcVfVl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsOcVfVl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2rsOcVfVl .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-v2rsOcVfVl .icon-box {
  background: #ff8a8a;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2rsOcVfVl .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2rsOcVfVl .card {
    margin-bottom: 2rem;
  }
  .cid-v2rsOcVfVl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2sAb4khE1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2sAb4khE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sAb4khE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2sAb4khE1 .mbr-section-title {
  color: #000000;
}
.cid-v2sAbDeAho {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2sAbDeAho .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2sAbDeAho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2sAbDeAho .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2sAbDeAho .row {
  flex-direction: row-reverse;
}
.cid-v2sAbDeAho img {
  width: 100%;
}
.cid-v2sAcgQxD0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v2rsOedJhz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-v2rsOedJhz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsOedJhz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2rsOedJhz .row {
    flex-direction: column-reverse;
  }
  .cid-v2rsOedJhz .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2rsOedJhz .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2rsOedJhz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2rsOedJhz .media-content,
.cid-v2rsOedJhz .mbr-figure {
  align-self: center;
}
.cid-v2rsOedJhz .mbr-figure iframe {
  width: 100%;
}
.cid-v2rsOedJhz .mbr-section-title {
  color: #ffb18a;
}
.cid-v2rsOedJhz .mbr-text,
.cid-v2rsOedJhz .mbr-section-btn {
  color: #ffffff;
}
.cid-v2rsOfl5gk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2rsOfl5gk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsOfl5gk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-v2rsOfl5gk .row {
    flex-direction: column-reverse;
  }
  .cid-v2rsOfl5gk .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-v2rsOfl5gk .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-v2rsOfl5gk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2rsOfl5gk .media-content,
.cid-v2rsOfl5gk .mbr-figure {
  align-self: center;
}
.cid-v2rsOfl5gk .mbr-figure iframe {
  width: 100%;
}
.cid-v2rsOfl5gk .mbr-section-title {
  color: #232323;
}
.cid-v2rsOfl5gk .mbr-text,
.cid-v2rsOfl5gk .mbr-section-btn {
  color: #000000;
}
.cid-v2rsOguPtt {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2rsOguPtt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2rsOguPtt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v2rsOguPtt .container {
    max-width: 1400px;
  }
}
.cid-v2rsOguPtt .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-v2rsOguPtt .card-wrapper {
  margin-top: 3rem;
}
.cid-v2rsOguPtt .row {
  justify-content: center;
}
.cid-v2rsOguPtt .card-text {
  text-align: left;
  color: #ffffff;
}
.cid-v2rsOguPtt .card-title,
.cid-v2rsOguPtt .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-v2rsOguPtt .mbr-section-title {
  color: #ffffff;
}
.cid-v2rsOguPtt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2rsOhHfXX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2sA8szmVe {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #707070;
}
.cid-v2sA8szmVe img,
.cid-v2sA8szmVe .item-img {
  width: 100%;
}
.cid-v2sA8szmVe .item:focus,
.cid-v2sA8szmVe span:focus {
  outline: none;
}
.cid-v2sA8szmVe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2sA8szmVe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2sA8szmVe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2sA8szmVe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2sA8szmVe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2sA8szmVe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2sA8szmVe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2sA8szmVe .mbr-section-title {
  color: #ffb18a;
}
.cid-v2sA8szmVe .mbr-text,
.cid-v2sA8szmVe .mbr-section-btn {
  text-align: left;
}
.cid-v2sA8szmVe .item-title {
  text-align: left;
}
.cid-v2sA8szmVe .item-subtitle {
  text-align: left;
}
.cid-v2sA8szmVe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2rsOk0luv {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-v2rsOk0luv .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v2rsOk0luv .card-wrapper {
  padding: 3rem;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2rsOk0luv .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2rsOk0luv .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2rsOk0luv .mbr-section-title {
  color: #ffffff;
}
.cid-v2rsOk0luv .card-title {
  color: #ffffff;
}
.cid-v2rsOk0luv .mbr-text {
  color: #ffffff;
}
.cid-v2rsOk0luv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2rsOk0luv .link {
  color: #44c200;
}
.cid-v2rsOlcG6s {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0f120f;
}
.cid-v2rsOlcG6s p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-v2rsOlcG6s .panel-title {
  border-bottom: 2px solid #5758e0;
  display: flex!important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-v2rsOlcG6s .collapsed {
  border: none;
}
.cid-v2rsOlcG6s .collapsed span {
  transform: rotate(0deg);
}
.cid-v2rsOlcG6s span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #379683, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-v2rsOlcG6s .panel-body {
  padding-top: 0.5rem;
}
.cid-v2rsOlcG6s .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v2rsOlcG6s .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #1f2122;
  padding: 0;
}
.cid-v2rsOlcG6s .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-v2rsOlcG6s .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v2rsOlcG6s .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-v2rsOlcG6s .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v2rsOlcG6s .panel-text {
  color: #ffffff;
}
.cid-v2rsOlcG6s H4 {
  color: #ffffff;
}
.cid-v2rsOlcG6s H2 {
  color: #ffffff;
}
.cid-v2rsOlcG6s .mbr-section-text {
  color: #ffffff;
}
.cid-v2rsOlcG6s H3 {
  color: #ffffff;
}
.cid-v2rsOmqPDt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-v2rsOmqPDt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v2rsOmqPDt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v2rsOmqPDt .row {
    text-align: center;
  }
  .cid-v2rsOmqPDt .social-row {
    justify-content: center;
  }
}
.cid-v2rsOmqPDt .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v2rsOmqPDt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2rsOmqPDt .list {
    margin-bottom: 0rem;
  }
}
.cid-v2rsOmqPDt .mbr-text {
  color: #fafafa;
}
.cid-v2rsOmqPDt .mbr-iconfont {
  color: black;
}
.cid-v2rsOmqPDt .mbr-section-subtitle {
  color: #ffffff;
}
