body {
  font-family: Jost;
}
.display-1 {
  font-family: 'calibri-regular';
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-2 {
  font-family: 'calibri-regular';
  font-size: 1.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-4 {
  font-family: 'calibri-regular';
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'calibri-regular';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'calibri-regular';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.26rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #47b5ed !important;
}
.bg-success {
  background-color: #3fd16e !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #3fd16e !important;
  border-color: #3fd16e !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: #249548 !important;
  border-color: #249548 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #249548 !important;
  border-color: #249548 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3fd16e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #249548 !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: #3fd16e !important;
  border-color: #3fd16e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #47b5ed !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #3fd16e !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1283bc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #218942 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #47b5ed;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #47b5ed;
  border-color: #47b5ed;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #47b5ed;
}
.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: #e4f8ea;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'calibri-regular';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #47b5ed !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'calibri-regular';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #47b5ed;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #47b5ed;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #47b5ed;
}
.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: #47b5ed;
  border-bottom-color: #47b5ed;
}
.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: #47b5ed !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2347b5ed' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0EmLYErPi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0EmLYErPi .mbr-section-subtitle {
  text-align: left;
}
.cid-t0EmLYErPi .mbr-section-title {
  text-align: left;
}
.cid-tKJTvmwkqg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tKJTvmwkqg .mbr-section-title {
  text-align: center;
}
.cid-tKJTvmwkqg .mbr-section-text {
  text-align: center;
}
.cid-tKJTvmwkqg a[type="submit"],
.cid-tKJTvmwkqg button[type="submit"] {
  margin-top: 0;
}
.cid-tKJTvmwkqg .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-tKJTvmwkqg mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-tKJTvmwkqg .row .spinner-border,
.cid-tKJTvmwkqg .row .spinner-grow {
  width: 32px;
  color: #47b5ed;
}
.cid-tKJTvmwkqg .gdpr-block {
  display: none;
}
.cid-tTcelwUC36 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTcelwUC36 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTcelwUC36 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTcelwUC36 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-tTcelwUC36 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tTcelwUC36 .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tTcelwUC36 .container {
    padding: 0 20px;
  }
}
.cid-tTcelwUC36 .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-tTcelwUC36 .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-tTcelwUC36 .mbr-section-title {
  color: #1d1d1d;
}
.cid-tTcelwUC36 .mbr-text {
  color: #706f6d;
}
.cid-tTcelwUC36 .mbr-section-title,
.cid-tTcelwUC36 .mbr-section-btn {
  text-align: center;
}
.cid-tKu8ERbo7P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKu8ERbo7P .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tKu8ERbo7P .currentcost {
  color: #232323;
}
.cid-tKu8ERbo7P .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tKu8ERbo7P .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKu8ERbo7P .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tKu8ERbo7P .text-box {
    padding: 1rem;
  }
}
.cid-tKu8ERbo7P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tKwOCJ1yda {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKwOCJ1yda .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tKwOCJ1yda .currentcost {
  color: #232323;
}
.cid-tKwOCJ1yda .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tKwOCJ1yda .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKwOCJ1yda .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tKwOCJ1yda .text-box {
    padding: 1rem;
  }
}
.cid-tKwOCJ1yda .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tKwOSCOpSS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKwOSCOpSS .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tKwOSCOpSS .currentcost {
  color: #232323;
}
.cid-tKwOSCOpSS .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tKwOSCOpSS .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKwOSCOpSS .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tKwOSCOpSS .text-box {
    padding: 1rem;
  }
}
.cid-tKwOSCOpSS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tKwPhRQE2t {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKwPhRQE2t .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tKwPhRQE2t .currentcost {
  color: #232323;
}
.cid-tKwPhRQE2t .card-wrapper {
  border-radius: 4px;
  background: #bdd8e4;
}
@media (min-width: 992px) {
  .cid-tKwPhRQE2t .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKwPhRQE2t .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tKwPhRQE2t .text-box {
    padding: 1rem;
  }
}
.cid-tKwPhRQE2t .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tKwPiqv2lr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKwPiqv2lr .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tKwPiqv2lr .currentcost {
  color: #232323;
}
.cid-tKwPiqv2lr .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tKwPiqv2lr .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKwPiqv2lr .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tKwPiqv2lr .text-box {
    padding: 1rem;
  }
}
.cid-tKwPiqv2lr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tLzpLBKuBB {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLzpLBKuBB .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLzpLBKuBB .mbr-text {
  text-align: left;
}
.cid-usod850U3z {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-usod850U3z .carousel-item {
  justify-content: center;
}
.cid-usod850U3z .carousel-item.active,
.cid-usod850U3z .carousel-item-next,
.cid-usod850U3z .carousel-item-prev {
  display: flex;
}
.cid-usod850U3z .carousel-controls a {
  transition: opacity .5s;
  font-size: 22px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
}
.cid-usod850U3z .carousel-control-next span {
  padding-left: 5px;
}
.cid-usod850U3z .carousel-control-prev span {
  padding-right: 5px;
}
.cid-usod850U3z .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-usod850U3z .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-usod850U3z .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-usod850U3z .user_desk {
  text-align: center;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-sRi9FsULgT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRi9FsULgT .mbr-section-subtitle {
  text-align: left;
}
.cid-sRi9FsULgT .mbr-section-title {
  text-align: left;
}
.cid-t0cqMAGxix {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0cqMAGxix .mbr-section-subtitle {
  text-align: left;
}
.cid-t0cqMAGxix .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t0cqMAGxix .mbr-section-title {
  text-align: left;
}
.cid-sZIAM4qRdX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZIAM4qRdX .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZIAM4qRdX .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-tvFnBfeA6Y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFnBfeA6Y .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFnBfeA6Y .currentcost {
  color: #232323;
}
.cid-tvFnBfeA6Y .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFnBfeA6Y .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFnBfeA6Y .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFnBfeA6Y .text-box {
    padding: 1rem;
  }
}
.cid-tvFnBfeA6Y .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFqvZDEwd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFqvZDEwd .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFqvZDEwd .currentcost {
  color: #232323;
}
.cid-tvFqvZDEwd .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFqvZDEwd .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFqvZDEwd .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFqvZDEwd .text-box {
    padding: 1rem;
  }
}
.cid-tvFqvZDEwd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFrY2GqZv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFrY2GqZv .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFrY2GqZv .currentcost {
  color: #232323;
}
.cid-tvFrY2GqZv .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFrY2GqZv .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFrY2GqZv .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFrY2GqZv .text-box {
    padding: 1rem;
  }
}
.cid-tvFrY2GqZv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ty2M65W1Tt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ty2M65W1Tt .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-ty2M65W1Tt .currentcost {
  color: #232323;
}
.cid-ty2M65W1Tt .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-ty2M65W1Tt .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ty2M65W1Tt .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ty2M65W1Tt .text-box {
    padding: 1rem;
  }
}
.cid-ty2M65W1Tt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFsNkjmbF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFsNkjmbF .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFsNkjmbF .currentcost {
  color: #232323;
}
.cid-tvFsNkjmbF .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFsNkjmbF .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFsNkjmbF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFsNkjmbF .text-box {
    padding: 1rem;
  }
}
.cid-tvFsNkjmbF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFtZfIezl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFtZfIezl .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFtZfIezl .currentcost {
  color: #232323;
}
.cid-tvFtZfIezl .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFtZfIezl .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFtZfIezl .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFtZfIezl .text-box {
    padding: 1rem;
  }
}
.cid-tvFtZfIezl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFtZNcMkw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFtZNcMkw .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFtZNcMkw .currentcost {
  color: #232323;
}
.cid-tvFtZNcMkw .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFtZNcMkw .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFtZNcMkw .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFtZNcMkw .text-box {
    padding: 1rem;
  }
}
.cid-tvFtZNcMkw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFpKocPpF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFpKocPpF .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFpKocPpF .currentcost {
  color: #232323;
}
.cid-tvFpKocPpF .card-wrapper {
  border-radius: 4px;
  background: #a5bf98;
}
@media (min-width: 992px) {
  .cid-tvFpKocPpF .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFpKocPpF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFpKocPpF .text-box {
    padding: 1rem;
  }
}
.cid-tvFpKocPpF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFuOzr88l {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFuOzr88l .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVTvYkDIrz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTvYkDIrz .mbr-section-subtitle {
  text-align: left;
}
.cid-sVTvYkDIrz .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sVTvYkDIrz .mbr-section-title {
  text-align: left;
}
.cid-tarjKiE7IY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tarjKiE7IY .mbr-section-subtitle {
  text-align: left;
}
.cid-tarjKiE7IY .mbr-section-title {
  text-align: left;
}
.cid-sVTvWtsTGS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTvWtsTGS .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTvWtsTGS .mbr-text {
  text-align: left;
}
.cid-tvJxR52H0A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJxR52H0A .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJxR52H0A .currentcost {
  color: #232323;
}
.cid-tvJxR52H0A .card-wrapper {
  border-radius: 4px;
  background: #bdd8e4;
}
@media (min-width: 992px) {
  .cid-tvJxR52H0A .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJxR52H0A .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJxR52H0A .text-box {
    padding: 1rem;
  }
}
.cid-tvJxR52H0A .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJyf3VMfm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJyf3VMfm .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJyf3VMfm .currentcost {
  color: #232323;
}
.cid-tvJyf3VMfm .card-wrapper {
  border-radius: 4px;
  background: #bdd8e4;
}
@media (min-width: 992px) {
  .cid-tvJyf3VMfm .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJyf3VMfm .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJyf3VMfm .text-box {
    padding: 1rem;
  }
}
.cid-tvJyf3VMfm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tJ6Qp4NhOr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ6Qp4NhOr .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tJ6Qp4NhOr .currentcost {
  color: #232323;
}
.cid-tJ6Qp4NhOr .card-wrapper {
  border-radius: 4px;
  background: #bdd8e4;
}
@media (min-width: 992px) {
  .cid-tJ6Qp4NhOr .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJ6Qp4NhOr .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tJ6Qp4NhOr .text-box {
    padding: 1rem;
  }
}
.cid-tJ6Qp4NhOr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJCdMecKk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJCdMecKk .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJCdMecKk .currentcost {
  color: #232323;
}
.cid-tvJCdMecKk .card-wrapper {
  border-radius: 4px;
  background: #bdd8e4;
}
@media (min-width: 992px) {
  .cid-tvJCdMecKk .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJCdMecKk .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJCdMecKk .text-box {
    padding: 1rem;
  }
}
.cid-tvJCdMecKk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJBIx7ChM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJBIx7ChM .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJBIx7ChM .currentcost {
  color: #232323;
}
.cid-tvJBIx7ChM .card-wrapper {
  border-radius: 4px;
  background: #bdd8e4;
}
@media (min-width: 992px) {
  .cid-tvJBIx7ChM .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJBIx7ChM .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJBIx7ChM .text-box {
    padding: 1rem;
  }
}
.cid-tvJBIx7ChM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJCvcygWx {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJCvcygWx .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSSN3CXpBF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSSN3CXpBF .mbr-section-subtitle {
  text-align: left;
}
.cid-sSSN3CXpBF .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSSN3CXpBF .mbr-section-title {
  text-align: left;
}
.cid-sSSNwia99n {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSSNwia99n .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSSNwia99n .mbr-text {
  text-align: left;
}
.cid-sSSNboAm9C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sSSNboAm9C .counter-container ol {
  margin-bottom: 0;
}
.cid-sSSNboAm9C .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sSSPi5ubhm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSSPi5ubhm .mbr-section-subtitle {
  text-align: left;
}
.cid-sSSPi5ubhm .mbr-section-title {
  text-align: left;
}
.cid-sSUPtajw5U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSUPtajw5U .video-wrapper iframe {
  width: 100%;
}
.cid-sSUPtajw5U .mbr-section-title,
.cid-sSUPtajw5U .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSUPtajw5U .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSUPtajw5U .mbr-section-title {
  text-align: left;
}
.cid-sSUQ7XWqpF {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSUQ7XWqpF .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSUQ7XWqpF .mbr-text {
  text-align: left;
}
.cid-sSURHvvtPe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSURHvvtPe .mbr-section-subtitle {
  text-align: left;
}
.cid-sSURHvvtPe .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSURHvvtPe .mbr-section-title {
  text-align: left;
}
.cid-sSUSmEWguY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSUSmEWguY .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSUSmEWguY .mbr-text {
  text-align: left;
}
.cid-sSUSEU7WvE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSUSEU7WvE .mbr-section-subtitle {
  text-align: left;
}
.cid-sSUSEU7WvE .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSUSEU7WvE .mbr-section-title {
  text-align: left;
}
.cid-sVPqJ27a1J {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVPqJ27a1J .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVPqJ27a1J .mbr-text {
  text-align: left;
}
.cid-tGb1QBlBKb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVPr5psk8a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVPr5psk8a .video-wrapper iframe {
  width: 100%;
}
.cid-sVPr5psk8a .mbr-section-title,
.cid-sVPr5psk8a .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVPr5psk8a .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVPr5psk8a .mbr-section-title {
  text-align: left;
}
.cid-tIDt48BvIh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tIDt48BvIh .video-wrapper iframe {
  width: 100%;
}
.cid-tIDt48BvIh .mbr-section-title,
.cid-tIDt48BvIh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tIDt48BvIh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIDt48BvIh .mbr-section-title {
  text-align: left;
}
.cid-sSUTVYGB8l {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSUTVYGB8l .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSUTVYGB8l .mbr-text {
  text-align: left;
}
.cid-sSUTXCHfQC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSUTXCHfQC .mbr-section-subtitle {
  text-align: left;
}
.cid-sSUTXCHfQC .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSUTXCHfQC .mbr-section-title {
  text-align: left;
}
.cid-sSUY8Fid01 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSUY8Fid01 .mbr-section-subtitle {
  text-align: left;
}
.cid-sSUY8Fid01 .mbr-section-title {
  text-align: left;
}
.cid-sTlIt3gsYK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTlIt3gsYK .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTlIt3gsYK .mbr-text {
  text-align: left;
}
.cid-sSVRAwyenS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSVRAwyenS .video-wrapper iframe {
  width: 100%;
}
.cid-sSVRAwyenS .mbr-section-title,
.cid-sSVRAwyenS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSVRAwyenS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSVRAwyenS .mbr-section-title {
  text-align: left;
}
.cid-sTlIEvwKov {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTlIEvwKov .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTlIEvwKov .mbr-text {
  text-align: left;
}
.cid-sSVVH8gfPB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSVVH8gfPB .video-wrapper iframe {
  width: 100%;
}
.cid-sSVVH8gfPB .mbr-section-title,
.cid-sSVVH8gfPB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSVVH8gfPB .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSVWZA1OoR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sSVWZA1OoR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSVWZA1OoR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSVWZA1OoR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTlIVBL9q7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTlIVBL9q7 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTlIVBL9q7 .mbr-text {
  text-align: left;
}
.cid-sSVSvWjL07 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSVSvWjL07 .video-wrapper iframe {
  width: 100%;
}
.cid-sSVSvWjL07 .mbr-section-title,
.cid-sSVSvWjL07 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSVSvWjL07 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSVSvWjL07 .mbr-section-title {
  text-align: left;
}
.cid-sTlIWtGJNu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTlIWtGJNu .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTlIWtGJNu .mbr-text {
  text-align: left;
}
.cid-tGb2mu0HSg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSW1FKqEh5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSW1FKqEh5 .video-wrapper iframe {
  width: 100%;
}
.cid-sSW1FKqEh5 .mbr-section-title,
.cid-sSW1FKqEh5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSW1FKqEh5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSW2H3dnB2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSW2H3dnB2 .video-wrapper iframe {
  width: 100%;
}
.cid-sSW2H3dnB2 .mbr-section-title,
.cid-sSW2H3dnB2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSW2H3dnB2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSW2H3dnB2 .mbr-section-title {
  text-align: left;
}
.cid-sSUY2norpJ {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sSUY2norpJ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sSUY2norpJ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sSUY2norpJ .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpLY596D {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpLY596D .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sXLCiaaf93 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXLCiaaf93 .mbr-section-subtitle {
  text-align: left;
}
.cid-sXLCiaaf93 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sXLCiaaf93 .mbr-section-title {
  text-align: left;
}
.cid-sXLCGlpal5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sXLCGlpal5 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXLCGlpal5 .mbr-text {
  text-align: left;
}
.cid-sXLCHDmA67 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sXLCHDmA67 .counter-container ol {
  margin-bottom: 0;
}
.cid-sXLCHDmA67 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sXViMlyD9O {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXViMlyD9O .mbr-section-subtitle {
  text-align: left;
}
.cid-sXViMlyD9O .mbr-section-title {
  text-align: left;
}
.cid-sXVlxxJjvJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlxxJjvJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlxxJjvJ .mbr-text {
  text-align: left;
}
.cid-tL5V7eRqXr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVzJSVfcL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXVzJSVfcL .video-wrapper iframe {
  width: 100%;
}
.cid-sXVzJSVfcL .mbr-section-title,
.cid-sXVzJSVfcL .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXVzJSVfcL .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXVzJSVfcL .mbr-section-title {
  text-align: left;
}
.cid-sXVlyEkhKZ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlyEkhKZ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlyEkhKZ .mbr-text {
  text-align: left;
}
.cid-tL5Y7Lwvr1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5Y7Lwvr1 .mbr-section-title {
  text-align: left;
}
.cid-tL5Y7Lwvr1 .mbr-text {
  text-align: left;
}
.cid-sXVsYbutC1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXVsYbutC1 .video-wrapper iframe {
  width: 100%;
}
.cid-sXVsYbutC1 .mbr-section-title,
.cid-sXVsYbutC1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXVsYbutC1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXVsYbutC1 .mbr-section-title {
  text-align: left;
}
.cid-sXVunTgoi1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXVunTgoi1 .video-wrapper iframe {
  width: 100%;
}
.cid-sXVunTgoi1 .mbr-section-title,
.cid-sXVunTgoi1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXVunTgoi1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXVunTgoi1 .mbr-section-title {
  text-align: left;
}
.cid-sXVlAg1QQJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlAg1QQJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlAg1QQJ .mbr-text {
  text-align: left;
}
.cid-tL5XTpGxzc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5XTpGxzc .mbr-section-title {
  text-align: left;
}
.cid-tL5XTpGxzc .mbr-text {
  text-align: left;
}
.cid-sXYbhMenlA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXYbhMenlA .video-wrapper iframe {
  width: 100%;
}
.cid-sXYbhMenlA .mbr-section-title,
.cid-sXYbhMenlA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXYbhMenlA .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXYbhMenlA .mbr-section-title {
  text-align: left;
}
.cid-sXYd6OIcBH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXYd6OIcBH .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXYd6OIcBH .mbr-text {
  text-align: left;
}
.cid-tL5XpgJYry {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5XpgJYry .mbr-section-title {
  text-align: left;
}
.cid-sXVlBklRsA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlBklRsA .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlBklRsA .mbr-text {
  text-align: left;
}
.cid-tL5X51Grue {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5X51Grue .mbr-section-title {
  text-align: left;
}
.cid-tqsDob1S3p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tqsDob1S3p .video-wrapper iframe {
  width: 100%;
}
.cid-tqsDob1S3p .mbr-section-title,
.cid-tqsDob1S3p .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqsDob1S3p .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqsDob1S3p .mbr-section-title {
  text-align: left;
}
.cid-sXYukjLC6d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXYukjLC6d .video-wrapper iframe {
  width: 100%;
}
.cid-sXYukjLC6d .mbr-section-title,
.cid-sXYukjLC6d .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXYukjLC6d .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXYukjLC6d .mbr-section-title {
  text-align: left;
}
.cid-sXViNUN2SQ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXViNUN2SQ .mbr-section-subtitle {
  text-align: left;
}
.cid-sXViNUN2SQ .mbr-section-title {
  text-align: left;
}
.cid-sXVlY6GW2v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlY6GW2v .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlY6GW2v .mbr-text {
  text-align: left;
}
.cid-tL5WD1cBoA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5WD1cBoA .mbr-section-title {
  text-align: left;
}
.cid-sY57Ko1fwS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sY57Ko1fwS .video-wrapper iframe {
  width: 100%;
}
.cid-sY57Ko1fwS .mbr-section-title,
.cid-sY57Ko1fwS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sY57Ko1fwS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sY57Ko1fwS .mbr-section-title {
  text-align: left;
}
.cid-sXVlVbtWh4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlVbtWh4 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlVbtWh4 .mbr-text {
  text-align: left;
}
.cid-tL5WnKJrGC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sY57J1gBsN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sY57J1gBsN .video-wrapper iframe {
  width: 100%;
}
.cid-sY57J1gBsN .mbr-section-title,
.cid-sY57J1gBsN .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sY57J1gBsN .text-wrapper {
    padding: 2rem;
  }
}
.cid-sY57J1gBsN .mbr-section-title {
  text-align: left;
}
.cid-sXY005385o {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXY005385o .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXY005385o .mbr-text {
  text-align: left;
}
.cid-sY52e8n8C2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sY52e8n8C2 .video-wrapper iframe {
  width: 100%;
}
.cid-sY52e8n8C2 .mbr-section-title,
.cid-sY52e8n8C2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sY52e8n8C2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sY52e8n8C2 .mbr-section-title {
  text-align: left;
}
.cid-sXViP3kGqA {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXViP3kGqA .mbr-section-subtitle {
  text-align: left;
}
.cid-sXViP3kGqA .mbr-section-title {
  text-align: left;
}
.cid-sXVlZ1GVJA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlZ1GVJA .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlZ1GVJA .mbr-text {
  text-align: left;
}
.cid-tL5WeQlHzq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVscdJHYG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXVscdJHYG .video-wrapper iframe {
  width: 100%;
}
.cid-sXVscdJHYG .mbr-section-title,
.cid-sXVscdJHYG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXVscdJHYG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXVscdJHYG .mbr-section-title {
  text-align: left;
}
.cid-sXVlWmK59p {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlWmK59p .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlWmK59p .mbr-text {
  text-align: left;
}
.cid-tL5YB2hxQ9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5YB2hxQ9 .mbr-section-title {
  text-align: left;
}
.cid-tL5YB2hxQ9 .mbr-text {
  text-align: left;
}
.cid-sXVLO0JdVw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXVLO0JdVw .video-wrapper iframe {
  width: 100%;
}
.cid-sXVLO0JdVw .mbr-section-title,
.cid-sXVLO0JdVw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXVLO0JdVw .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXVLO0JdVw .mbr-section-title {
  text-align: left;
}
.cid-sXVlXuP7R5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVlXuP7R5 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXVlXuP7R5 .mbr-text {
  text-align: left;
}
.cid-tL5VEVvkuq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXVmloH5qx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXVmloH5qx .video-wrapper iframe {
  width: 100%;
}
.cid-sXVmloH5qx .mbr-section-title,
.cid-sXVmloH5qx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXVmloH5qx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXVmloH5qx .mbr-section-title {
  text-align: left;
}
.cid-sXW1lAIz2i {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXW1lAIz2i .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXW1lAIz2i .mbr-text {
  text-align: left;
}
.cid-sXW2HjgEEW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXW2HjgEEW .mbr-section-subtitle {
  text-align: left;
}
.cid-sXW268t6B0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXW268t6B0 .video-wrapper iframe {
  width: 100%;
}
.cid-sXW268t6B0 .mbr-section-title,
.cid-sXW268t6B0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXW268t6B0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXW268t6B0 .mbr-section-title {
  text-align: left;
}
.cid-sT505GyOfg {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sT505GyOfg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sT505GyOfg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sT505GyOfg .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpUEKZyd {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpUEKZyd .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t05mqvcxTw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t05mqvcxTw .mbr-section-subtitle {
  text-align: left;
}
.cid-t05mqvcxTw .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t05mqvcxTw .mbr-section-title {
  text-align: left;
}
.cid-t05mzdx3Ww {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t05mzdx3Ww .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t05mzdx3Ww .mbr-text {
  text-align: left;
}
.cid-t05mnHRW6H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t05mnHRW6H .counter-container ol {
  margin-bottom: 0;
}
.cid-t05mnHRW6H .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t05CzVgKa6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t05CzVgKa6 .mbr-section-subtitle {
  text-align: left;
}
.cid-t05CzVgKa6 .mbr-section-title {
  text-align: left;
}
.cid-t05Ei8UhL1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t05Ei8UhL1 .video-wrapper iframe {
  width: 100%;
}
.cid-t05Ei8UhL1 .mbr-section-title,
.cid-t05Ei8UhL1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t05Ei8UhL1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t05Ei8UhL1 .mbr-section-title {
  text-align: left;
}
.cid-t05CyNOiXh {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t05CyNOiXh .mbr-section-subtitle {
  text-align: left;
}
.cid-t05CyNOiXh .mbr-section-title {
  text-align: left;
}
.cid-t08yHJJ3rG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t08yHJJ3rG .video-wrapper iframe {
  width: 100%;
}
.cid-t08yHJJ3rG .mbr-section-title,
.cid-t08yHJJ3rG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t08yHJJ3rG .text-wrapper {
    padding: 2rem;
  }
}
.cid-t08yHJJ3rG .mbr-section-title {
  text-align: left;
}
.cid-t08yIp2WX2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t08yIp2WX2 .video-wrapper iframe {
  width: 100%;
}
.cid-t08yIp2WX2 .mbr-section-title,
.cid-t08yIp2WX2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t08yIp2WX2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t08yIp2WX2 .mbr-section-title {
  text-align: left;
}
.cid-t08yJ4bKz9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t08yJ4bKz9 .video-wrapper iframe {
  width: 100%;
}
.cid-t08yJ4bKz9 .mbr-section-title,
.cid-t08yJ4bKz9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t08yJ4bKz9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t08yJ4bKz9 .mbr-section-title {
  text-align: left;
}
.cid-t08yJGKrcY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t08yJGKrcY .video-wrapper iframe {
  width: 100%;
}
.cid-t08yJGKrcY .mbr-section-title,
.cid-t08yJGKrcY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t08yJGKrcY .text-wrapper {
    padding: 2rem;
  }
}
.cid-t08yJGKrcY .mbr-section-title {
  text-align: left;
}
.cid-t09fEglE2J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t09fEglE2J .video-wrapper iframe {
  width: 100%;
}
.cid-t09fEglE2J .mbr-section-title,
.cid-t09fEglE2J .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t09fEglE2J .text-wrapper {
    padding: 2rem;
  }
}
.cid-t09fEglE2J .mbr-section-title {
  text-align: left;
}
.cid-t05CZNJAZo {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t05CZNJAZo .mbr-section-subtitle {
  text-align: left;
}
.cid-t05CZNJAZo .mbr-section-title {
  text-align: left;
}
.cid-t08xbZyiCE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t08xbZyiCE .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t08xbZyiCE .mbr-text {
  text-align: left;
}
.cid-tLhtfgqyWL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t09jygZ3Zs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t09jygZ3Zs .video-wrapper iframe {
  width: 100%;
}
.cid-t09jygZ3Zs .mbr-section-title,
.cid-t09jygZ3Zs .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t09jygZ3Zs .text-wrapper {
    padding: 2rem;
  }
}
.cid-t09jygZ3Zs .mbr-section-title {
  text-align: left;
}
.cid-tCqCqr20VM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCqCqr20VM .mbr-section-subtitle {
  text-align: left;
}
.cid-tCqCqr20VM .mbr-section-title {
  text-align: left;
}
.cid-t08xcSpgbw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t08xcSpgbw .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t08xcSpgbw .mbr-text {
  text-align: left;
}
.cid-tLhts4xc2R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t09jzgqzWD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t09jzgqzWD .video-wrapper iframe {
  width: 100%;
}
.cid-t09jzgqzWD .mbr-section-title,
.cid-t09jzgqzWD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t09jzgqzWD .text-wrapper {
    padding: 2rem;
  }
}
.cid-t09jzgqzWD .mbr-section-title {
  text-align: left;
}
.cid-t09kNDg9Lw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t09kNDg9Lw .video-wrapper iframe {
  width: 100%;
}
.cid-t09kNDg9Lw .mbr-section-title,
.cid-t09kNDg9Lw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t09kNDg9Lw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t09kNDg9Lw .mbr-section-title {
  text-align: left;
}
.cid-t08xdrvutq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t08xdrvutq .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t08xdrvutq .mbr-text {
  text-align: left;
}
.cid-tLhtInv6tG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t09jAlbSU4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t09jAlbSU4 .video-wrapper iframe {
  width: 100%;
}
.cid-t09jAlbSU4 .mbr-section-title,
.cid-t09jAlbSU4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t09jAlbSU4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t09jAlbSU4 .mbr-section-title {
  text-align: left;
}
.cid-t09mizY24l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t09mizY24l .video-wrapper iframe {
  width: 100%;
}
.cid-t09mizY24l .mbr-section-title,
.cid-t09mizY24l .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t09mizY24l .text-wrapper {
    padding: 2rem;
  }
}
.cid-t09mizY24l .mbr-section-title {
  text-align: left;
}
.cid-t0nfFqbg8d {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0nfFqbg8d .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t0nfFqbg8d .mbr-text {
  text-align: left;
}
.cid-tLhtUf8gF7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0nfPDFITe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0nfPDFITe .video-wrapper iframe {
  width: 100%;
}
.cid-t0nfPDFITe .mbr-section-title,
.cid-t0nfPDFITe .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0nfPDFITe .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0nfPDFITe .mbr-section-title {
  text-align: left;
}
.cid-t05D0isvjU {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t05D0isvjU .mbr-section-subtitle {
  text-align: left;
}
.cid-t05D0isvjU .mbr-section-title {
  text-align: left;
}
.cid-t0nbZrvEMV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t0nbZrvEMV .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t0nbZrvEMV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t0nbZrvEMV .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJxsmcSbR {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJxsmcSbR .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUFzoHWC2t {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUFzoHWC2t .mbr-section-subtitle {
  text-align: left;
}
.cid-sUFzoHWC2t .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sUFzoHWC2t .mbr-section-title {
  text-align: left;
}
.cid-sUFzeSGsVs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sUFzeSGsVs .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUFzeSGsVs .mbr-text {
  text-align: left;
}
.cid-sUFzqfr0vN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sUFzqfr0vN .counter-container ol {
  margin-bottom: 0;
}
.cid-sUFzqfr0vN .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sXpKoyhQ7j {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpKoyhQ7j .mbr-section-subtitle {
  text-align: left;
}
.cid-sXpKoyhQ7j .mbr-section-title {
  text-align: left;
}
.cid-sXpLqYirhr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpLqYirhr .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpLqYirhr .mbr-text {
  text-align: left;
}
.cid-sXqa1XkUpU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXqa1XkUpU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sXqa1XkUpU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sXqa1XkUpU .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXpLmqfwBs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpLmqfwBs .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpLmqfwBs .mbr-text {
  text-align: left;
}
.cid-sXrMg7W09S {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sXrMg7W09S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sXrMg7W09S img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sXrMg7W09S .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXpLqeYZCJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpLqeYZCJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpLqeYZCJ .mbr-text {
  text-align: left;
}
.cid-sXpO2VYaH3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpO2VYaH3 .mbr-section-subtitle {
  text-align: left;
}
.cid-sXpO2VYaH3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sXpO2VYaH3 .mbr-section-title {
  text-align: left;
}
.cid-sXpLp4QHBE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpLp4QHBE .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpLp4QHBE .mbr-text {
  text-align: left;
}
.cid-sXrY7IOtWZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXrY7IOtWZ .mbr-section-subtitle {
  text-align: left;
}
.cid-sXrY7IOtWZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sXrY7IOtWZ .mbr-section-title {
  text-align: left;
}
.cid-sXpLrJ8oIR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpLrJ8oIR .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpLrJ8oIR .mbr-text {
  text-align: left;
}
.cid-tL5UEJQ18q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5UEJQ18q .mbr-section-title {
  text-align: left;
}
.cid-tL5UEJQ18q .mbr-text {
  text-align: left;
}
.cid-sXpOXtZJOL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpOXtZJOL .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpOXtZJOL .mbr-text {
  text-align: left;
}
.cid-tL5Upzwl8e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5Upzwl8e .mbr-section-title {
  text-align: left;
}
.cid-tL5Upzwl8e .mbr-text {
  text-align: left;
}
.cid-sXs9wpbt1p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXs9wpbt1p .video-wrapper iframe {
  width: 100%;
}
.cid-sXs9wpbt1p .mbr-section-title,
.cid-sXs9wpbt1p .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXs9wpbt1p .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXs9wpbt1p .mbr-section-title {
  text-align: left;
}
.cid-sXpKndgA1r {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpKndgA1r .mbr-section-subtitle {
  text-align: left;
}
.cid-sXpKndgA1r .mbr-section-title {
  text-align: left;
}
.cid-sXpMPb3dJx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpMPb3dJx .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpMPb3dJx .mbr-text {
  text-align: left;
}
.cid-tGb61BtADS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXzQ3XI0qS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXzQ3XI0qS .video-wrapper iframe {
  width: 100%;
}
.cid-sXzQ3XI0qS .mbr-section-title,
.cid-sXzQ3XI0qS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXzQ3XI0qS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXzQ3XI0qS .mbr-section-title {
  text-align: left;
}
.cid-sXpMPVL7h7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXpMPVL7h7 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXpMPVL7h7 .mbr-text {
  text-align: left;
}
.cid-sXzQXBCDUi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sXzQXBCDUi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sXzQXBCDUi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sXzQXBCDUi .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXzRxir4Sq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXzRxir4Sq .video-wrapper iframe {
  width: 100%;
}
.cid-sXzRxir4Sq .mbr-section-title,
.cid-sXzRxir4Sq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXzRxir4Sq .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXzRxir4Sq .mbr-section-title {
  text-align: left;
}
.cid-sXzQAFABMv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXzQAFABMv .video-wrapper iframe {
  width: 100%;
}
.cid-sXzQAFABMv .mbr-section-title,
.cid-sXzQAFABMv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXzQAFABMv .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXzQAFABMv .mbr-section-title {
  text-align: left;
}
.cid-sXzRflJkul {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXzRflJkul .video-wrapper iframe {
  width: 100%;
}
.cid-sXzRflJkul .mbr-section-title,
.cid-sXzRflJkul .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXzRflJkul .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXzRflJkul .mbr-section-title {
  text-align: left;
}
.cid-sXzRy3AXad {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXzRy3AXad .video-wrapper iframe {
  width: 100%;
}
.cid-sXzRy3AXad .mbr-section-title,
.cid-sXzRy3AXad .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXzRy3AXad .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXzRy3AXad .mbr-section-title {
  text-align: left;
}
.cid-sUFBDMWJtg {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sUFBDMWJtg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sUFBDMWJtg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sUFBDMWJtg .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpPo5yJ0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpPo5yJ0 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sTmAEP3tDQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTmAEP3tDQ .mbr-section-subtitle {
  text-align: left;
}
.cid-sTmAEP3tDQ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sTmAEP3tDQ .mbr-section-title {
  text-align: left;
}
.cid-sTmABaWMTh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sTmABaWMTh .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTmABaWMTh .mbr-text {
  text-align: left;
}
.cid-sTmCXyFSBO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTmCXyFSBO .counter-container ol {
  margin-bottom: 0;
}
.cid-sTmCXyFSBO .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sToiGZmLIo {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sToiGZmLIo .mbr-section-subtitle {
  text-align: left;
}
.cid-sToiGZmLIo .mbr-section-title {
  text-align: left;
}
.cid-sTru0I3bup {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTru0I3bup .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTru0I3bup .mbr-text {
  text-align: left;
}
.cid-tLhuFEBUDM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTrWIEF2ob {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTrWIEF2ob .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTrWIEF2ob img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTrWIEF2ob .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs36sPNcQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTs36sPNcQ .mbr-section-subtitle {
  text-align: left;
}
.cid-sTrYlqCTfv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTrYlqCTfv .video-wrapper iframe {
  width: 100%;
}
.cid-sTrYlqCTfv .mbr-section-title,
.cid-sTrYlqCTfv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTrYlqCTfv .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTrYlqCTfv .mbr-section-title {
  text-align: left;
}
.cid-t6KupvOqzc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6KupvOqzc .mbr-section-subtitle {
  text-align: left;
}
.cid-t6KupvOqzc .mbr-section-title {
  text-align: left;
}
.cid-sTD5sQjIlJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTD5sQjIlJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTD5sQjIlJ .mbr-text {
  text-align: left;
}
.cid-tLhvlehTNT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTDJCFxuau {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTDJCFxuau .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTDJCFxuau img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTDJCFxuau .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTDH3XMKek {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTDH3XMKek .video-wrapper iframe {
  width: 100%;
}
.cid-sTDH3XMKek .mbr-section-title,
.cid-sTDH3XMKek .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTDH3XMKek .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTDH3XMKek .mbr-section-title {
  text-align: left;
}
.cid-tepIJOHy54 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tepIJOHy54 .mbr-section-subtitle {
  text-align: left;
}
.cid-tepIJOHy54 .mbr-section-title {
  text-align: left;
}
.cid-sTrul8aQbd {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTrul8aQbd .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrul8aQbd .mbr-text {
  text-align: left;
}
.cid-tmvzExZxzB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmvzExZxzB .mbr-section-subtitle {
  text-align: left;
}
.cid-tmvzExZxzB .mbr-section-title {
  text-align: left;
}
.cid-sTs3W0iG5A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs3W0iG5A .video-wrapper iframe {
  width: 100%;
}
.cid-sTs3W0iG5A .mbr-section-title,
.cid-sTs3W0iG5A .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs3W0iG5A .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs3W0iG5A .mbr-section-title {
  text-align: left;
}
.cid-sTs3WYqYmb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs3WYqYmb .video-wrapper iframe {
  width: 100%;
}
.cid-sTs3WYqYmb .mbr-section-title,
.cid-sTs3WYqYmb .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs3WYqYmb .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs3WYqYmb .mbr-section-title {
  text-align: left;
}
.cid-sTs3XGchWe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs3XGchWe .video-wrapper iframe {
  width: 100%;
}
.cid-sTs3XGchWe .mbr-section-title,
.cid-sTs3XGchWe .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs3XGchWe .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs3XGchWe .mbr-section-title {
  text-align: left;
}
.cid-sTs3U9pp2D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs3U9pp2D .video-wrapper iframe {
  width: 100%;
}
.cid-sTs3U9pp2D .mbr-section-title,
.cid-sTs3U9pp2D .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs3U9pp2D .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs3U9pp2D .mbr-section-title {
  text-align: left;
}
.cid-sTs72orjhu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs72orjhu .video-wrapper iframe {
  width: 100%;
}
.cid-sTs72orjhu .mbr-section-title,
.cid-sTs72orjhu .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs72orjhu .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs72orjhu .mbr-section-title {
  text-align: left;
}
.cid-sTs7k7gqh6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs7k7gqh6 .video-wrapper iframe {
  width: 100%;
}
.cid-sTs7k7gqh6 .mbr-section-title,
.cid-sTs7k7gqh6 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs7k7gqh6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs7k7gqh6 .mbr-section-title {
  text-align: left;
}
.cid-sTs7kQox9r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs7kQox9r .video-wrapper iframe {
  width: 100%;
}
.cid-sTs7kQox9r .mbr-section-title,
.cid-sTs7kQox9r .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs7kQox9r .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs7kQox9r .mbr-section-title {
  text-align: left;
}
.cid-sTs82cK7ag {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs82cK7ag .video-wrapper iframe {
  width: 100%;
}
.cid-sTs82cK7ag .mbr-section-title,
.cid-sTs82cK7ag .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs82cK7ag .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs82cK7ag .mbr-section-title {
  text-align: left;
}
.cid-sTs81lj6ED {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs81lj6ED .video-wrapper iframe {
  width: 100%;
}
.cid-sTs81lj6ED .mbr-section-title,
.cid-sTs81lj6ED .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs81lj6ED .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs81lj6ED .mbr-section-title {
  text-align: left;
}
.cid-sTs8BsrrUO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs8BsrrUO .video-wrapper iframe {
  width: 100%;
}
.cid-sTs8BsrrUO .mbr-section-title,
.cid-sTs8BsrrUO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs8BsrrUO .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs8BsrrUO .mbr-section-title {
  text-align: left;
}
.cid-sTs8CtZG2T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs8CtZG2T .video-wrapper iframe {
  width: 100%;
}
.cid-sTs8CtZG2T .mbr-section-title,
.cid-sTs8CtZG2T .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs8CtZG2T .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs8CtZG2T .mbr-section-title {
  text-align: left;
}
.cid-sTs9fD8UgZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs9fD8UgZ .video-wrapper iframe {
  width: 100%;
}
.cid-sTs9fD8UgZ .mbr-section-title,
.cid-sTs9fD8UgZ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs9fD8UgZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs9fD8UgZ .mbr-section-title {
  text-align: left;
}
.cid-sTs9e0gDl5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs9e0gDl5 .video-wrapper iframe {
  width: 100%;
}
.cid-sTs9e0gDl5 .mbr-section-title,
.cid-sTs9e0gDl5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs9e0gDl5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs9e0gDl5 .mbr-section-title {
  text-align: left;
}
.cid-sTsafp02Oy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTsafp02Oy .video-wrapper iframe {
  width: 100%;
}
.cid-sTsafp02Oy .mbr-section-title,
.cid-sTsafp02Oy .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTsafp02Oy .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTsafp02Oy .mbr-section-title {
  text-align: left;
}
.cid-sTs3Yj3gqx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTs3Yj3gqx .video-wrapper iframe {
  width: 100%;
}
.cid-sTs3Yj3gqx .mbr-section-title,
.cid-sTs3Yj3gqx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTs3Yj3gqx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTs3Yj3gqx .mbr-section-title {
  text-align: left;
}
.cid-sTsECIWsTQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsECIWsTQ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTsECIWsTQ .mbr-text {
  text-align: left;
}
.cid-tLhE2rIluG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsFJl4O1p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTsFJl4O1p .video-wrapper iframe {
  width: 100%;
}
.cid-sTsFJl4O1p .mbr-section-title,
.cid-sTsFJl4O1p .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTsFJl4O1p .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTsFJl4O1p .mbr-section-title {
  text-align: left;
}
.cid-sTsGlvZa9x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTsGlvZa9x .video-wrapper iframe {
  width: 100%;
}
.cid-sTsGlvZa9x .mbr-section-title,
.cid-sTsGlvZa9x .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTsGlvZa9x .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTsGlvZa9x .mbr-section-title {
  text-align: left;
}
.cid-sTsHLzLl2J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTsHLzLl2J .video-wrapper iframe {
  width: 100%;
}
.cid-sTsHLzLl2J .mbr-section-title,
.cid-sTsHLzLl2J .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTsHLzLl2J .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTsHLzLl2J .mbr-section-title {
  text-align: left;
}
.cid-sTrUWkhPw5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTrUWkhPw5 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrUWkhPw5 .mbr-text {
  text-align: left;
}
.cid-tLhxlt4nql {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsEpA93sZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsEpA93sZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTsEpA93sZ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTsEpA93sZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTsEpA93sZ .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTsEpA93sZ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTsEpA93sZ .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTsEpA93sZ .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTsEpA93sZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTsEpA93sZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTsEpA93sZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTsIFzmBLj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsIFzmBLj .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTsIFzmBLj .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTsIFzmBLj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTsIFzmBLj .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTsIFzmBLj .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTsIFzmBLj .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTsIFzmBLj .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTsIFzmBLj .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTsIFzmBLj .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTsIFzmBLj .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTsIGO8Z8H {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsIGO8Z8H .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTsIGO8Z8H .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTsIGO8Z8H .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTsIGO8Z8H .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTsIGO8Z8H .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTsIGO8Z8H .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTsIGO8Z8H .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTsIGO8Z8H .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTsIGO8Z8H .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTsIGO8Z8H .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTsKonU4Tw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsKonU4Tw .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTsKonU4Tw .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTsKonU4Tw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTsKonU4Tw .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTsKonU4Tw .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTsKonU4Tw .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTsKonU4Tw .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTsKonU4Tw .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTsKonU4Tw .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTsKonU4Tw .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTsL3DGtya {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsL3DGtya .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTsL3DGtya .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTsL3DGtya .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTsL3DGtya .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTsL3DGtya .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTsL3DGtya .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTsL3DGtya .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTsL3DGtya .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTsL3DGtya .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTsL3DGtya .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tmvzVp0rtl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmvzVp0rtl .mbr-section-subtitle {
  text-align: left;
}
.cid-tmvzVp0rtl .mbr-section-title {
  text-align: left;
}
.cid-sTsCVtjzIH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTsCVtjzIH .video-wrapper iframe {
  width: 100%;
}
.cid-sTsCVtjzIH .mbr-section-title,
.cid-sTsCVtjzIH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTsCVtjzIH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTsCVtjzIH .mbr-section-title {
  text-align: left;
}
.cid-sTsQquCAX4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsQquCAX4 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTsQquCAX4 .mbr-text {
  text-align: left;
}
.cid-tLhz0U3mtm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTsR9qkCke {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTsR9qkCke .video-wrapper iframe {
  width: 100%;
}
.cid-sTsR9qkCke .mbr-section-title,
.cid-sTsR9qkCke .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTsR9qkCke .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTsR9qkCke .mbr-section-title {
  text-align: left;
}
.cid-sTtiAROh4z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtiAROh4z .video-wrapper iframe {
  width: 100%;
}
.cid-sTtiAROh4z .mbr-section-title,
.cid-sTtiAROh4z .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtiAROh4z .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtiAROh4z .mbr-section-title {
  text-align: left;
}
.cid-sTtxoPsnXv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtxoPsnXv .video-wrapper iframe {
  width: 100%;
}
.cid-sTtxoPsnXv .mbr-section-title,
.cid-sTtxoPsnXv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtxoPsnXv .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtxoPsnXv .mbr-section-title {
  text-align: left;
}
.cid-sTtxqHBfYb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtxqHBfYb .video-wrapper iframe {
  width: 100%;
}
.cid-sTtxqHBfYb .mbr-section-title,
.cid-sTtxqHBfYb .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtxqHBfYb .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtxqHBfYb .mbr-section-title {
  text-align: left;
}
.cid-sTtxrutdXt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtxrutdXt .video-wrapper iframe {
  width: 100%;
}
.cid-sTtxrutdXt .mbr-section-title,
.cid-sTtxrutdXt .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtxrutdXt .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtxrutdXt .mbr-section-title {
  text-align: left;
}
.cid-sTtxsxT9AV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtxsxT9AV .video-wrapper iframe {
  width: 100%;
}
.cid-sTtxsxT9AV .mbr-section-title,
.cid-sTtxsxT9AV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtxsxT9AV .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtxsxT9AV .mbr-section-title {
  text-align: left;
}
.cid-sTtxtjUHwa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtxtjUHwa .video-wrapper iframe {
  width: 100%;
}
.cid-sTtxtjUHwa .mbr-section-title,
.cid-sTtxtjUHwa .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtxtjUHwa .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtxtjUHwa .mbr-section-title {
  text-align: left;
}
.cid-sTtAnuEviY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtAnuEviY .video-wrapper iframe {
  width: 100%;
}
.cid-sTtAnuEviY .mbr-section-title,
.cid-sTtAnuEviY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtAnuEviY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtAnuEviY .mbr-section-title {
  text-align: left;
}
.cid-sTtAolQIJa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtAolQIJa .video-wrapper iframe {
  width: 100%;
}
.cid-sTtAolQIJa .mbr-section-title,
.cid-sTtAolQIJa .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtAolQIJa .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtAolQIJa .mbr-section-title {
  text-align: left;
}
.cid-sTtApEBkI1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTtApEBkI1 .video-wrapper iframe {
  width: 100%;
}
.cid-sTtApEBkI1 .mbr-section-title,
.cid-sTtApEBkI1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTtApEBkI1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTtApEBkI1 .mbr-section-title {
  text-align: left;
}
.cid-sTu1PjQ9PS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTu1PjQ9PS .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTu1PjQ9PS .mbr-text {
  text-align: left;
}
.cid-sTu2zORpBg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTu2zORpBg .video-wrapper iframe {
  width: 100%;
}
.cid-sTu2zORpBg .mbr-section-title,
.cid-sTu2zORpBg .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTu2zORpBg .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTu2zORpBg .mbr-section-title {
  text-align: left;
}
.cid-sTu47vGKZJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTu47vGKZJ .video-wrapper iframe {
  width: 100%;
}
.cid-sTu47vGKZJ .mbr-section-title,
.cid-sTu47vGKZJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTu47vGKZJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTu47vGKZJ .mbr-section-title {
  text-align: left;
}
.cid-sTu4XReby9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTu4XReby9 .video-wrapper iframe {
  width: 100%;
}
.cid-sTu4XReby9 .mbr-section-title,
.cid-sTu4XReby9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTu4XReby9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTu4XReby9 .mbr-section-title {
  text-align: left;
}
.cid-sTu5Rpwhdv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTu5Rpwhdv .video-wrapper iframe {
  width: 100%;
}
.cid-sTu5Rpwhdv .mbr-section-title,
.cid-sTu5Rpwhdv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTu5Rpwhdv .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTu5Rpwhdv .mbr-section-title {
  text-align: left;
}
.cid-sXLB30UbvE {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXLB30UbvE .mbr-section-subtitle {
  text-align: left;
}
.cid-sXLB30UbvE .mbr-section-title {
  text-align: left;
}
.cid-sZf7yUC0Uy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZf7yUC0Uy .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZf7yUC0Uy .mbr-text {
  text-align: left;
}
.cid-sZeXSLfqDo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZeXSLfqDo .mbr-section-subtitle {
  text-align: left;
}
.cid-sZeXSLfqDo .mbr-section-title {
  text-align: left;
}
.cid-sZfcDFrHDc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZfcDFrHDc .video-wrapper iframe {
  width: 100%;
}
.cid-sZfcDFrHDc .mbr-section-title,
.cid-sZfcDFrHDc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZfcDFrHDc .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZfcDFrHDc .mbr-section-title {
  text-align: left;
}
.cid-sZf7AoXgsu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZf7AoXgsu .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZf7AoXgsu .mbr-text {
  text-align: left;
}
.cid-tLhzKEn4ys {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZf7CmOnzV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZf7CmOnzV .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZf7CmOnzV .mbr-text {
  text-align: left;
}
.cid-tGbg0tb63X {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZeXV3BVE4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZeXV3BVE4 .video-wrapper iframe {
  width: 100%;
}
.cid-sZeXV3BVE4 .mbr-section-title,
.cid-sZeXV3BVE4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZeXV3BVE4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZeXV3BVE4 .mbr-section-title {
  text-align: left;
}
.cid-sZ9Ts6UzW5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZ9Ts6UzW5 .video-wrapper iframe {
  width: 100%;
}
.cid-sZ9Ts6UzW5 .mbr-section-title,
.cid-sZ9Ts6UzW5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZ9Ts6UzW5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZ9Ts6UzW5 .mbr-section-title {
  text-align: left;
}
.cid-sTupHCmdvW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTupHCmdvW .mbr-section-subtitle {
  text-align: left;
}
.cid-sTupHCmdvW .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sTupHCmdvW .mbr-section-title {
  text-align: left;
}
.cid-sTupqPyL1v {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTupqPyL1v .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTupqPyL1v .mbr-text {
  text-align: left;
}
.cid-sTDxr2s3Op {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTDxr2s3Op .mbr-section-subtitle {
  text-align: left;
}
.cid-sTDxr2s3Op .mbr-section-title {
  text-align: left;
}
.cid-sTDydBYIOO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTDydBYIOO .video-wrapper iframe {
  width: 100%;
}
.cid-sTDydBYIOO .mbr-section-title,
.cid-sTDydBYIOO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTDydBYIOO .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTDydBYIOO .mbr-section-title {
  text-align: left;
}
.cid-tLhAIN79j2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTukBrHdFj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sTukBrHdFj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTukBrHdFj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTukBrHdFj .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLhB0eLxKd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTureAnT0G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTureAnT0G .video-wrapper iframe {
  width: 100%;
}
.cid-sTureAnT0G .mbr-section-title,
.cid-sTureAnT0G .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTureAnT0G .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTureAnT0G .mbr-section-title {
  text-align: left;
}
.cid-sTuqrtKVVy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTuqrtKVVy .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTuqrtKVVy .mbr-text {
  text-align: left;
}
.cid-tLhBlW9DH1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTuzaCXR3T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTuzaCXR3T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTuzaCXR3T img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTuzaCXR3T .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLhFTd1CdQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sTwDHWw8lO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTwDHWw8lO .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTwDHWw8lO .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTwDHWw8lO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTwDHWw8lO .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTwDHWw8lO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTwDHWw8lO .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTwDHWw8lO .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTwDHWw8lO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTwDHWw8lO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTwDHWw8lO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTwFy49vKj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTwFy49vKj .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTwFy49vKj .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTwFy49vKj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTwFy49vKj .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTwFy49vKj .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTwFy49vKj .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTwFy49vKj .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTwFy49vKj .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTwFy49vKj .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTwFy49vKj .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTwJzJ4kVs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTwJzJ4kVs .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTwJzJ4kVs .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTwJzJ4kVs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTwJzJ4kVs .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTwJzJ4kVs .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTwJzJ4kVs .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTwJzJ4kVs .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTwJzJ4kVs .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTwJzJ4kVs .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTwJzJ4kVs .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTwLzQ6dus {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTwLzQ6dus .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTwLzQ6dus .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTwLzQ6dus .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTwLzQ6dus .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTwLzQ6dus .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTwLzQ6dus .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTwLzQ6dus .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTwLzQ6dus .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTwLzQ6dus .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTwLzQ6dus .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tLhFIKZDti {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sTxdo01DVo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTxdo01DVo .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTxdo01DVo .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTxdo01DVo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTxdo01DVo .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTxdo01DVo .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTxdo01DVo .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTxdo01DVo .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTxdo01DVo .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTxdo01DVo .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTxdo01DVo .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTxeL6r0WS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTxeL6r0WS .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTxeL6r0WS .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTxeL6r0WS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTxeL6r0WS .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTxeL6r0WS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTxeL6r0WS .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTxeL6r0WS .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTxeL6r0WS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTxeL6r0WS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTxeL6r0WS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTxwDFvYX7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTxwDFvYX7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTxwDFvYX7 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTxwDFvYX7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTxwDFvYX7 .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTxwDFvYX7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTxwDFvYX7 .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTxwDFvYX7 .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTxwDFvYX7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTxwDFvYX7 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTxwDFvYX7 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sTxyx1BpAI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTxyx1BpAI .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTxyx1BpAI .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTxyx1BpAI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTxyx1BpAI .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTxyx1BpAI .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTxyx1BpAI .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTxyx1BpAI .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTxyx1BpAI .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTxyx1BpAI .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTxyx1BpAI .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tLhFcqZVLU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sTxD5g2qZj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTxD5g2qZj .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sTxD5g2qZj .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sTxD5g2qZj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sTxD5g2qZj .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sTxD5g2qZj .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sTxD5g2qZj .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sTxD5g2qZj .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sTxD5g2qZj .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sTxD5g2qZj .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTxD5g2qZj .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tLhEVpU427 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTuAaA6uv4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTuAaA6uv4 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTuAaA6uv4 .mbr-text {
  text-align: left;
}
.cid-tmwMUIB34k {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmwMUIB34k .mbr-section-subtitle {
  text-align: left;
}
.cid-tmwMUIB34k .mbr-section-title {
  text-align: left;
}
.cid-sTxJ8w6H96 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTxJ8w6H96 .video-wrapper iframe {
  width: 100%;
}
.cid-sTxJ8w6H96 .mbr-section-title,
.cid-sTxJ8w6H96 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTxJ8w6H96 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTxJ8w6H96 .mbr-section-title {
  text-align: left;
}
.cid-sTxQCXdo4E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sTxQCXdo4E .video-wrapper iframe {
  width: 100%;
}
.cid-sTxQCXdo4E .mbr-section-title,
.cid-sTxQCXdo4E .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sTxQCXdo4E .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTxQCXdo4E .mbr-section-title {
  text-align: left;
}
.cid-sZ9J5bhKjD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZ9J5bhKjD .video-wrapper iframe {
  width: 100%;
}
.cid-sZ9J5bhKjD .mbr-section-title,
.cid-sZ9J5bhKjD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZ9J5bhKjD .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZ9J5bhKjD .mbr-section-title {
  text-align: left;
}
.cid-tzZ1PeoozM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzZ1PeoozM .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzZ1PeoozM .mbr-text {
  text-align: left;
}
.cid-tzZ1ZJ8jwn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzZ1ZJ8jwn .mbr-section-subtitle {
  text-align: left;
}
.cid-tzZ1ZJ8jwn .mbr-section-title {
  text-align: left;
}
.cid-tzZ28qlnsY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzZ28qlnsY .video-wrapper iframe {
  width: 100%;
}
.cid-tzZ28qlnsY .mbr-section-title,
.cid-tzZ28qlnsY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzZ28qlnsY .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzZ28qlnsY .mbr-section-title {
  text-align: left;
}
.cid-tzZ28qlnsY .mbr-text {
  color: #000000;
}
.cid-tA0xicDYwl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tA0xicDYwl .mbr-section-subtitle {
  text-align: left;
}
.cid-tA0xicDYwl .mbr-section-title {
  text-align: left;
}
.cid-tzZ23dSPCk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzZ23dSPCk .video-wrapper iframe {
  width: 100%;
}
.cid-tzZ23dSPCk .mbr-section-title,
.cid-tzZ23dSPCk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzZ23dSPCk .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzZ23dSPCk .mbr-section-title {
  text-align: left;
}
.cid-tzZ23dSPCk .mbr-text {
  color: #000000;
}
.cid-tA0zC878SK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tA0zC878SK .mbr-section-subtitle {
  text-align: left;
}
.cid-tA0zC878SK .mbr-section-title {
  text-align: left;
}
.cid-tzZ23WmfBC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzZ23WmfBC .video-wrapper iframe {
  width: 100%;
}
.cid-tzZ23WmfBC .mbr-section-title,
.cid-tzZ23WmfBC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzZ23WmfBC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzZ23WmfBC .mbr-section-title {
  text-align: left;
}
.cid-tzZ23WmfBC .mbr-text {
  color: #000000;
}
.cid-sTrtFiJAb6 {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sTrtFiJAb6 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sTrtFiJAb6 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sTrtFiJAb6 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJqEr8LCW {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJqEr8LCW .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRo3rgOBjh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRo3rgOBjh .mbr-section-subtitle {
  text-align: left;
}
.cid-sRo3rgOBjh .mbr-section-title {
  text-align: left;
}
.cid-sUne8mrIBZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUne8mrIBZ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUne8mrIBZ .mbr-text {
  text-align: left;
}
.cid-tvJjM2NlIL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJjM2NlIL .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJjM2NlIL .currentcost {
  color: #232323;
}
.cid-tvJjM2NlIL .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tvJjM2NlIL .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJjM2NlIL .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJjM2NlIL .text-box {
    padding: 1rem;
  }
}
.cid-tvJjM2NlIL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJkc6IEtP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJkc6IEtP .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJkc6IEtP .currentcost {
  color: #232323;
}
.cid-tvJkc6IEtP .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tvJkc6IEtP .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJkc6IEtP .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJkc6IEtP .text-box {
    padding: 1rem;
  }
}
.cid-tvJkc6IEtP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJl2kki5V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJl2kki5V .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJl2kki5V .currentcost {
  color: #232323;
}
.cid-tvJl2kki5V .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tvJl2kki5V .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJl2kki5V .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJl2kki5V .text-box {
    padding: 1rem;
  }
}
.cid-tvJl2kki5V .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJmPbcjTA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJmPbcjTA .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJmPbcjTA .currentcost {
  color: #232323;
}
.cid-tvJmPbcjTA .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tvJmPbcjTA .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJmPbcjTA .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJmPbcjTA .text-box {
    padding: 1rem;
  }
}
.cid-tvJmPbcjTA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJlU8NoVi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJlU8NoVi .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJlU8NoVi .currentcost {
  color: #232323;
}
.cid-tvJlU8NoVi .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tvJlU8NoVi .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJlU8NoVi .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJlU8NoVi .text-box {
    padding: 1rem;
  }
}
.cid-tvJlU8NoVi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJnwPPIwu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJnwPPIwu .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJnwPPIwu .currentcost {
  color: #232323;
}
.cid-tvJnwPPIwu .card-wrapper {
  border-radius: 4px;
  background: #fff0b0;
}
@media (min-width: 992px) {
  .cid-tvJnwPPIwu .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJnwPPIwu .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJnwPPIwu .text-box {
    padding: 1rem;
  }
}
.cid-tvJnwPPIwu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJjGYSyBf {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJjGYSyBf .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-tXaV2DZTFq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tXaV2DZTFq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXaV2DZTFq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXaV2DZTFq .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-tXaV2DZTFq .container-fluid {
    padding: 0 20px;
  }
}
.cid-tXaV2DZTFq .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-tXaV2DZTFq .container {
    padding: 0 20px;
  }
}
.cid-tXaV2DZTFq .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-tXaV2DZTFq .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-tXaV2DZTFq .mbr-section-title {
  color: #1d1d1d;
}
.cid-tXaV2DZTFq .mbr-text {
  color: #706f6d;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0ctiGoqU3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0ctiGoqU3 .mbr-section-subtitle {
  text-align: left;
}
.cid-t0ctiGoqU3 .mbr-section-title {
  text-align: left;
}
.cid-sTlyJxd3Zg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTlyJxd3Zg .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTlyJxd3Zg .mbr-text {
  text-align: left;
}
.cid-tvFXfgoret {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFXfgoret .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFXfgoret .currentcost {
  color: #232323;
}
.cid-tvFXfgoret .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvFXfgoret .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFXfgoret .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFXfgoret .text-box {
    padding: 1rem;
  }
}
.cid-tvFXfgoret .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFY1mWJwR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFY1mWJwR .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFY1mWJwR .currentcost {
  color: #232323;
}
.cid-tvFY1mWJwR .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvFY1mWJwR .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFY1mWJwR .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFY1mWJwR .text-box {
    padding: 1rem;
  }
}
.cid-tvFY1mWJwR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFZurdPhE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvFZurdPhE .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvFZurdPhE .currentcost {
  color: #232323;
}
.cid-tvFZurdPhE .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvFZurdPhE .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvFZurdPhE .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvFZurdPhE .text-box {
    padding: 1rem;
  }
}
.cid-tvFZurdPhE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvG27ZULEJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvG27ZULEJ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvG27ZULEJ .currentcost {
  color: #232323;
}
.cid-tvG27ZULEJ .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvG27ZULEJ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvG27ZULEJ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvG27ZULEJ .text-box {
    padding: 1rem;
  }
}
.cid-tvG27ZULEJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvG2wPYGxI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvG2wPYGxI .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvG2wPYGxI .currentcost {
  color: #232323;
}
.cid-tvG2wPYGxI .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvG2wPYGxI .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvG2wPYGxI .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvG2wPYGxI .text-box {
    padding: 1rem;
  }
}
.cid-tvG2wPYGxI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvG51YosE0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvG51YosE0 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvG51YosE0 .currentcost {
  color: #232323;
}
.cid-tvG51YosE0 .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvG51YosE0 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvG51YosE0 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvG51YosE0 .text-box {
    padding: 1rem;
  }
}
.cid-tvG51YosE0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvG35QoO0l {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvG35QoO0l .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvG35QoO0l .currentcost {
  color: #232323;
}
.cid-tvG35QoO0l .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvG35QoO0l .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvG35QoO0l .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvG35QoO0l .text-box {
    padding: 1rem;
  }
}
.cid-tvG35QoO0l .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvG3Ziqh34 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvG3Ziqh34 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvG3Ziqh34 .currentcost {
  color: #232323;
}
.cid-tvG3Ziqh34 .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvG3Ziqh34 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvG3Ziqh34 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvG3Ziqh34 .text-box {
    padding: 1rem;
  }
}
.cid-tvG3Ziqh34 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJfgpOMbW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJfgpOMbW .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJfgpOMbW .currentcost {
  color: #232323;
}
.cid-tvJfgpOMbW .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvJfgpOMbW .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJfgpOMbW .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJfgpOMbW .text-box {
    padding: 1rem;
  }
}
.cid-tvJfgpOMbW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJfFRGpsU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJfFRGpsU .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJfFRGpsU .currentcost {
  color: #232323;
}
.cid-tvJfFRGpsU .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvJfFRGpsU .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJfFRGpsU .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJfFRGpsU .text-box {
    padding: 1rem;
  }
}
.cid-tvJfFRGpsU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJgqNDBHv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJgqNDBHv .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJgqNDBHv .currentcost {
  color: #232323;
}
.cid-tvJgqNDBHv .card-wrapper {
  border-radius: 4px;
  background: #ecaf92;
}
@media (min-width: 992px) {
  .cid-tvJgqNDBHv .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJgqNDBHv .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJgqNDBHv .text-box {
    padding: 1rem;
  }
}
.cid-tvJgqNDBHv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvFX3greUt {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFX3greUt .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSr4vuimmX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSr4vuimmX .mbr-section-title {
  text-align: left;
}
.cid-sSr4vuimmX .mbr-section-subtitle {
  text-align: left;
}
.cid-sSr4Ofo90M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSr4Ofo90M .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSr4Ofo90M .mbr-text {
  text-align: left;
}
.cid-sSMDRjsaUy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sSMDRjsaUy .counter-container ol {
  margin-bottom: 0;
}
.cid-sSMDRjsaUy .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sSSJAilEad {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSSJAilEad .mbr-section-subtitle {
  text-align: left;
}
.cid-sSSJAilEad .mbr-section-title {
  text-align: left;
}
.cid-sSSJPbhpvY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSSJPbhpvY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSSJPbhpvY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSSJPbhpvY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSSKmyAqFz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSSKmyAqFz .video-wrapper iframe {
  width: 100%;
}
.cid-sSSKmyAqFz .mbr-section-title,
.cid-sSSKmyAqFz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSSKmyAqFz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSSKmyAqFz .mbr-section-title {
  text-align: left;
}
.cid-sSSKEQAERy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSSKEQAERy .video-wrapper iframe {
  width: 100%;
}
.cid-sSSKEQAERy .mbr-section-title,
.cid-sSSKEQAERy .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSSKEQAERy .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSSKEQAERy .mbr-section-title {
  text-align: left;
}
.cid-sSSLC5lC7R {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSSLC5lC7R .mbr-section-subtitle {
  text-align: left;
}
.cid-sSSLC5lC7R .mbr-section-title {
  text-align: left;
}
.cid-sSSLYYxDOg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSSLYYxDOg .video-wrapper iframe {
  width: 100%;
}
.cid-sSSLYYxDOg .mbr-section-title,
.cid-sSSLYYxDOg .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSSLYYxDOg .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSSLYYxDOg .mbr-section-title {
  text-align: left;
}
.cid-sUOqv6idUW {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUOqv6idUW .mbr-section-subtitle {
  text-align: left;
}
.cid-sUOqv6idUW .mbr-section-title {
  text-align: left;
}
.cid-sUOpYAR5wH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUOpYAR5wH .video-wrapper iframe {
  width: 100%;
}
.cid-sUOpYAR5wH .mbr-section-title,
.cid-sUOpYAR5wH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUOpYAR5wH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUOpYAR5wH .mbr-section-title {
  text-align: left;
}
.cid-sUOpUaCzhK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUOpUaCzhK .video-wrapper iframe {
  width: 100%;
}
.cid-sUOpUaCzhK .mbr-section-title,
.cid-sUOpUaCzhK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUOpUaCzhK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUOpUaCzhK .mbr-section-title {
  text-align: left;
}
.cid-sSSFAE3ljk {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sSSFAE3ljk .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sSSFAE3ljk .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sSSFAE3ljk .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFWCuJhT8 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFWCuJhT8 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSM8l59u1a {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSM8l59u1a .mbr-section-subtitle {
  text-align: left;
}
.cid-sSM8l59u1a .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSM8l59u1a .mbr-section-title {
  text-align: left;
}
.cid-sSM8n9GuTE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSM8n9GuTE .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSM8n9GuTE .mbr-text {
  text-align: left;
}
.cid-sSMaO0BdPI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sSMaO0BdPI .counter-container ol {
  margin-bottom: 0;
}
.cid-sSMaO0BdPI .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sSMdnMPCU4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSMdnMPCU4 .mbr-section-subtitle {
  text-align: left;
}
.cid-sSMdnMPCU4 .mbr-section-title {
  text-align: left;
}
.cid-sSScxgfWmF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSScxgfWmF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSScxgfWmF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSScxgfWmF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYPP2OTDLJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYPP2OTDLJ .mbr-section-subtitle {
  text-align: left;
}
.cid-sYPP2OTDLJ .mbr-section-title {
  text-align: left;
}
.cid-tjN7wT8OCH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tjN7wT8OCH .video-wrapper iframe {
  width: 100%;
}
.cid-tjN7wT8OCH .mbr-section-title,
.cid-tjN7wT8OCH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tjN7wT8OCH .text-wrapper {
    padding: 2rem;
  }
}
.cid-tjN7wT8OCH .mbr-section-title {
  text-align: left;
}
.cid-sSSdh6K7pq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSSdh6K7pq .video-wrapper iframe {
  width: 100%;
}
.cid-sSSdh6K7pq .mbr-section-title,
.cid-sSSdh6K7pq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSSdh6K7pq .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSSdh6K7pq .mbr-section-title {
  text-align: left;
}
.cid-tKQ5VCp8hf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sT0dBsfCxn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sT0dBsfCxn .video-wrapper iframe {
  width: 100%;
}
.cid-sT0dBsfCxn .mbr-section-title,
.cid-sT0dBsfCxn .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sT0dBsfCxn .text-wrapper {
    padding: 2rem;
  }
}
.cid-sT0dBsfCxn .mbr-section-title {
  text-align: left;
}
.cid-sSMdI1OjFd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSMdI1OjFd .mbr-section-subtitle {
  text-align: left;
}
.cid-sSMdI1OjFd .mbr-section-title {
  text-align: left;
}
.cid-sT4sKTqo8N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sT4sKTqo8N .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sT4sKTqo8N .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sT4sKTqo8N .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sT4sKTqo8N .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sT4sKTqo8N .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sT4sKTqo8N .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sT4sKTqo8N .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sT4sKTqo8N .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sT4sKTqo8N .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sT4sKTqo8N .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sSMf1Pkyak {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSMf1Pkyak .mbr-section-subtitle {
  text-align: left;
}
.cid-sSMf1Pkyak .mbr-section-title {
  text-align: left;
}
.cid-sRynAsD7Cy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sRynAsD7Cy .video-wrapper iframe {
  width: 100%;
}
.cid-sRynAsD7Cy .mbr-section-title,
.cid-sRynAsD7Cy .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRynAsD7Cy .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSMgPRiycQ {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sSMgPRiycQ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sSMgPRiycQ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sSMgPRiycQ .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFW77i8ef {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFW77i8ef .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRmXnWPHzz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRmXnWPHzz .mbr-section-subtitle {
  text-align: left;
}
.cid-sRmXnWPHzz .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sRmXnWPHzz .mbr-section-title {
  text-align: left;
}
.cid-sSbikpJU41 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSbikpJU41 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSbikpJU41 .mbr-text {
  text-align: left;
}
.cid-sSBZC5J1TY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sSBZC5J1TY .counter-container ol {
  margin-bottom: 0;
}
.cid-sSBZC5J1TY .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sSK5c1xHgI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSK5c1xHgI .mbr-section-subtitle {
  text-align: left;
}
.cid-sSK5c1xHgI .mbr-section-title {
  text-align: left;
}
.cid-sSGxdWsnMV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSGxdWsnMV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSGxdWsnMV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSGxdWsnMV .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSH2Nzt8xJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSH2Nzt8xJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSH2Nzt8xJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSH2Nzt8xJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSH3IKZ6iE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSH3IKZ6iE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSH3IKZ6iE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSH3IKZ6iE .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSH3ZxT9rM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSH3ZxT9rM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSH3ZxT9rM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSH3ZxT9rM .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTETJAACi2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sTETJAACi2 .mbr-section-subtitle {
  text-align: left;
}
.cid-sSKcoITCbM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSKcoITCbM .video-wrapper iframe {
  width: 100%;
}
.cid-sSKcoITCbM .mbr-section-title,
.cid-sSKcoITCbM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSKcoITCbM .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSKcoITCbM .mbr-section-title {
  text-align: left;
}
.cid-tKOB1z2Smz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSpwF78pY5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSpwF78pY5 .video-wrapper iframe {
  width: 100%;
}
.cid-sSpwF78pY5 .mbr-section-title,
.cid-sSpwF78pY5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSpwF78pY5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSpwF78pY5 .mbr-section-title {
  text-align: center;
}
.cid-sSpnKfrGTZ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSpnKfrGTZ .mbr-section-subtitle {
  text-align: left;
}
.cid-sSpnKfrGTZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSpnKfrGTZ .mbr-section-title {
  text-align: left;
}
.cid-sSKeLXKPL9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSKeLXKPL9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSKeLXKPL9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSKeLXKPL9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tKOBo6mCFC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSKgSamAsc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSKgSamAsc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSKgSamAsc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSKgSamAsc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tKOBNN39TW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKOCmWBAYG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRmXnXZp9L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sRmXnXZp9L .video-wrapper iframe {
  width: 100%;
}
.cid-sRmXnXZp9L .mbr-section-title,
.cid-sRmXnXZp9L .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sRmXnXZp9L .text-wrapper {
    padding: 2rem;
  }
}
.cid-sRmXnXZp9L .mbr-section-title {
  text-align: center;
}
.cid-tmkmmjCZzx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmkmmjCZzx .mbr-section-subtitle {
  text-align: left;
}
.cid-tmkmmjCZzx .mbr-section-title {
  text-align: left;
}
.cid-sSKiA2eIZH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSKiA2eIZH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSKiA2eIZH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSKiA2eIZH .text-wrapper {
    padding: 2rem;
  }
}
.cid-tmk83n8QKD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmk83n8QKD .mbr-section-subtitle {
  text-align: left;
}
.cid-tmk83n8QKD .mbr-section-title {
  text-align: left;
}
.cid-sSKjlQl3ir {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSKjlQl3ir .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSKjlQl3ir img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSKjlQl3ir .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSDRZmug14 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSDRZmug14 .mbr-section-subtitle {
  text-align: left;
}
.cid-sSKkaBN9Vq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSKkaBN9Vq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSKkaBN9Vq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSKkaBN9Vq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tJfWR3VvUz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSKkra9bzS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sSKkra9bzS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sSKkra9bzS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sSKkra9bzS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tmkndkaMi2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmkndkaMi2 .mbr-section-subtitle {
  text-align: left;
}
.cid-tmkndkaMi2 .mbr-section-title {
  text-align: left;
}
.cid-sSpyYUI4eS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSpyYUI4eS .mbr-section-subtitle {
  text-align: left;
  color: #353535;
}
.cid-sSpyYUI4eS .mbr-section-title {
  text-align: left;
}
.cid-sSKlkrcHNn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSKlkrcHNn .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sSKlkrcHNn .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sSKlkrcHNn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sSKlkrcHNn .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sSKlkrcHNn .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sSKlkrcHNn .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sSKlkrcHNn .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sSKlkrcHNn .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sSKlkrcHNn .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sSKlkrcHNn .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sSpCmNRvIL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSpCmNRvIL .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSpCmNRvIL .mbr-text {
  text-align: left;
}
.cid-sSpDsNOMwj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSpDsNOMwj .mbr-section-subtitle {
  text-align: left;
}
.cid-sSpDsNOMwj .mbr-section-title {
  text-align: left;
}
.cid-sSpH5cDp76 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sSpH5cDp76 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sSpH5cDp76 .mbr-text {
  text-align: left;
}
.cid-sSpJbI5hkJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSpJbI5hkJ .mbr-section-subtitle {
  text-align: left;
}
.cid-sSpJbI5hkJ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sSpJbI5hkJ .mbr-section-title {
  text-align: left;
}
.cid-sSKo4iKC9E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sSKo4iKC9E .video-wrapper iframe {
  width: 100%;
}
.cid-sSKo4iKC9E .mbr-section-title,
.cid-sSKo4iKC9E .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sSKo4iKC9E .text-wrapper {
    padding: 2rem;
  }
}
.cid-sSKo4iKC9E .mbr-section-title {
  text-align: left;
}
.cid-sUU4c8ybqk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUU4c8ybqk .mbr-section-subtitle {
  text-align: left;
}
.cid-sUU4c8ybqk .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sUU4c8ybqk .mbr-section-title {
  text-align: left;
}
.cid-sUU4x3e1YU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUU4x3e1YU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sUU4x3e1YU .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sUU4x3e1YU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sUU4x3e1YU .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sUU4x3e1YU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sUU4x3e1YU .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sUU4x3e1YU .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sUU4x3e1YU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sUU4x3e1YU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sUU4x3e1YU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sUU65LTxGh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUU65LTxGh .video-wrapper iframe {
  width: 100%;
}
.cid-sUU65LTxGh .mbr-section-title,
.cid-sUU65LTxGh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUU65LTxGh .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUU65LTxGh .mbr-section-title {
  text-align: left;
}
.cid-tma0Jst9eF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tma0Jst9eF .video-wrapper iframe {
  width: 100%;
}
.cid-tma0Jst9eF .mbr-section-title,
.cid-tma0Jst9eF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tma0Jst9eF .text-wrapper {
    padding: 2rem;
  }
}
.cid-tma0Jst9eF .mbr-section-title {
  text-align: left;
}
.cid-sUU66CAMoj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUU66CAMoj .video-wrapper iframe {
  width: 100%;
}
.cid-sUU66CAMoj .mbr-section-title,
.cid-sUU66CAMoj .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUU66CAMoj .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUU66CAMoj .mbr-section-title {
  text-align: left;
}
.cid-sWg8XnLE9e {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWg8XnLE9e .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWg8XnLE9e .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWg8XnLE9e .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFy15CijV {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFy15CijV .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYaxPMfPoT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYaxPMfPoT .mbr-section-subtitle {
  text-align: left;
}
.cid-sYaxPMfPoT .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYaxPMfPoT .mbr-section-title {
  text-align: left;
}
.cid-sYaxQQJuN7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYaxQQJuN7 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYaxQQJuN7 .mbr-text {
  text-align: left;
}
.cid-sYaxS5UM3S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYaxS5UM3S .counter-container ol {
  margin-bottom: 0;
}
.cid-sYaxS5UM3S .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sYaAizcQCT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYaAizcQCT .mbr-section-subtitle {
  text-align: left;
}
.cid-sYaAizcQCT .mbr-section-title {
  text-align: left;
}
.cid-sYbn5XoMfY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYbn5XoMfY .video-wrapper iframe {
  width: 100%;
}
.cid-sYbn5XoMfY .mbr-section-title,
.cid-sYbn5XoMfY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYbn5XoMfY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYbn5XoMfY .mbr-section-title {
  text-align: left;
}
.cid-sYbnSY4wGe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYbnSY4wGe .video-wrapper iframe {
  width: 100%;
}
.cid-sYbnSY4wGe .mbr-section-title,
.cid-sYbnSY4wGe .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYbnSY4wGe .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYbnSY4wGe .mbr-section-title {
  text-align: left;
}
.cid-sYboXcE5HD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYboXcE5HD .video-wrapper iframe {
  width: 100%;
}
.cid-sYboXcE5HD .mbr-section-title,
.cid-sYboXcE5HD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYboXcE5HD .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYboXcE5HD .mbr-section-title {
  text-align: left;
}
.cid-sYbn7kLjqG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYbn7kLjqG .video-wrapper iframe {
  width: 100%;
}
.cid-sYbn7kLjqG .mbr-section-title,
.cid-sYbn7kLjqG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYbn7kLjqG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYbn7kLjqG .mbr-section-title {
  text-align: left;
}
.cid-tmlYwC6M4W {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmlYwC6M4W .mbr-section-subtitle {
  text-align: left;
}
.cid-tmlYwC6M4W .mbr-section-title {
  text-align: left;
}
.cid-sYbaIAWsx2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYbaIAWsx2 .video-wrapper iframe {
  width: 100%;
}
.cid-sYbaIAWsx2 .mbr-section-title,
.cid-sYbaIAWsx2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYbaIAWsx2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYbaIAWsx2 .mbr-section-title {
  text-align: left;
}
.cid-sYbaJzqTmb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYbaJzqTmb .video-wrapper iframe {
  width: 100%;
}
.cid-sYbaJzqTmb .mbr-section-title,
.cid-sYbaJzqTmb .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYbaJzqTmb .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYbaJzqTmb .mbr-section-title {
  text-align: left;
}
.cid-sYscj9I5aD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYscj9I5aD .video-wrapper iframe {
  width: 100%;
}
.cid-sYscj9I5aD .mbr-section-title,
.cid-sYscj9I5aD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYscj9I5aD .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYscj9I5aD .mbr-section-title {
  text-align: left;
}
.cid-tL7DCuCNyI {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7DCuCNyI .mbr-section-title {
  text-align: left;
}
.cid-tL7DCuCNyI .mbr-text {
  text-align: left;
}
.cid-sYfsuNFlqJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYfsuNFlqJ .video-wrapper iframe {
  width: 100%;
}
.cid-sYfsuNFlqJ .mbr-section-title,
.cid-sYfsuNFlqJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYfsuNFlqJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYfsuNFlqJ .mbr-section-title {
  text-align: left;
}
.cid-sYfq9clXqS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYfq9clXqS .video-wrapper iframe {
  width: 100%;
}
.cid-sYfq9clXqS .mbr-section-title,
.cid-sYfq9clXqS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYfq9clXqS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYfq9clXqS .mbr-section-title {
  text-align: left;
}
.cid-sYaAn80UOm {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYaAn80UOm .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sYaAn80UOm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sYaAn80UOm .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpY17Mha {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpY17Mha .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZsFnne21U {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZsFnne21U .mbr-section-subtitle {
  text-align: left;
}
.cid-sZsFnne21U .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sZsFnne21U .mbr-section-title {
  text-align: left;
}
.cid-sZsFkvkTib {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sZsFkvkTib .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZsFkvkTib .mbr-text {
  text-align: left;
}
.cid-sZsFo3FtVA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sZsFo3FtVA .counter-container ol {
  margin-bottom: 0;
}
.cid-sZsFo3FtVA .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sZsFvTl1N0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZsFvTl1N0 .mbr-section-subtitle {
  text-align: left;
}
.cid-sZsFvTl1N0 .mbr-section-title {
  text-align: left;
}
.cid-sZsQKvT6Xl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZsQKvT6Xl .video-wrapper iframe {
  width: 100%;
}
.cid-sZsQKvT6Xl .mbr-section-title,
.cid-sZsQKvT6Xl .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZsQKvT6Xl .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZsQKvT6Xl .mbr-section-title {
  text-align: left;
}
.cid-sZsFvfngg3 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZsFvfngg3 .mbr-section-subtitle {
  text-align: left;
}
.cid-sZsFvfngg3 .mbr-section-title {
  text-align: left;
}
.cid-tyTzVK9RkA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tyTzVK9RkA .video-wrapper iframe {
  width: 100%;
}
.cid-tyTzVK9RkA .mbr-section-title,
.cid-tyTzVK9RkA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tyTzVK9RkA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyTzVK9RkA .mbr-section-title {
  text-align: left;
}
.cid-tyTzVK9RkA .mbr-text {
  color: #000000;
}
.cid-sZsTuzf9Hz {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZsTuzf9Hz .mbr-section-subtitle {
  text-align: left;
}
.cid-sZsTuzf9Hz .mbr-section-title {
  text-align: left;
}
.cid-sZsTYZ22ys {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZsTYZ22ys .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZsTYZ22ys .mbr-text {
  text-align: left;
}
.cid-tLhnXR2f6o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZwqd6b3E3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZwqd6b3E3 .video-wrapper iframe {
  width: 100%;
}
.cid-sZwqd6b3E3 .mbr-section-title,
.cid-sZwqd6b3E3 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZwqd6b3E3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZwqd6b3E3 .mbr-section-title {
  text-align: left;
}
.cid-sZwsCDH0Vl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZwsCDH0Vl .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZwsCDH0Vl .mbr-text {
  text-align: left;
}
.cid-tLhnYHRIeQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZwvLARgGq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZwvLARgGq .video-wrapper iframe {
  width: 100%;
}
.cid-sZwvLARgGq .mbr-section-title,
.cid-sZwvLARgGq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZwvLARgGq .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZwvLARgGq .mbr-section-title {
  text-align: left;
}
.cid-sZsTZWQ1rh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZsTZWQ1rh .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZsTZWQ1rh .mbr-text {
  text-align: left;
}
.cid-tLho0bKC01 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZwqbhtCua {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sZwqbhtCua .video-wrapper iframe {
  width: 100%;
}
.cid-sZwqbhtCua .mbr-section-title,
.cid-sZwqbhtCua .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZwqbhtCua .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZwqbhtCua .mbr-section-title {
  text-align: left;
}
.cid-sZtTr0tUqt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZtTr0tUqt .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZtTr0tUqt .mbr-text {
  text-align: left;
}
.cid-tLho0UswhR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t03wEBtwMw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t03wEBtwMw .video-wrapper iframe {
  width: 100%;
}
.cid-t03wEBtwMw .mbr-section-title,
.cid-t03wEBtwMw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t03wEBtwMw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t03wEBtwMw .mbr-section-title {
  text-align: left;
}
.cid-sZsFs2sALs {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sZsFs2sALs .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sZsFs2sALs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sZsFs2sALs .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJqHW4I95 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJqHW4I95 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWMTXskYR6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWMTXskYR6 .mbr-section-subtitle {
  text-align: left;
}
.cid-sWMTXskYR6 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWMTXskYR6 .mbr-section-title {
  text-align: left;
}
.cid-sWMTYDE4kp {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWMTYDE4kp .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWMTYDE4kp .mbr-text {
  text-align: left;
}
.cid-sWMTWgqo8q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sWMTWgqo8q .counter-container ol {
  margin-bottom: 0;
}
.cid-sWMTWgqo8q .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sWMZdjrdVP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWMZdjrdVP .mbr-section-subtitle {
  text-align: left;
}
.cid-sWMZdjrdVP .mbr-section-title {
  text-align: left;
}
.cid-sXik4glf4a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXik4glf4a .video-wrapper iframe {
  width: 100%;
}
.cid-sXik4glf4a .mbr-section-title,
.cid-sXik4glf4a .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXik4glf4a .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXik4glf4a .mbr-section-title {
  text-align: left;
}
.cid-sXilL0TVJF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXilL0TVJF .video-wrapper iframe {
  width: 100%;
}
.cid-sXilL0TVJF .mbr-section-title,
.cid-sXilL0TVJF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXilL0TVJF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXilL0TVJF .mbr-section-title {
  text-align: left;
}
.cid-sXisy9YeH1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXisy9YeH1 .video-wrapper iframe {
  width: 100%;
}
.cid-sXisy9YeH1 .mbr-section-title,
.cid-sXisy9YeH1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXisy9YeH1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXisy9YeH1 .mbr-section-title {
  text-align: left;
}
.cid-sWN0awQdgw {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWN0awQdgw .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWN0awQdgw .mbr-text {
  text-align: left;
}
.cid-tL5Pc7SM0g {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5Pc7SM0g .mbr-section-title {
  text-align: left;
}
.cid-tL5Pc7SM0g .mbr-text {
  text-align: left;
}
.cid-sXipPWxar1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXipPWxar1 .video-wrapper iframe {
  width: 100%;
}
.cid-sXipPWxar1 .mbr-section-title,
.cid-sXipPWxar1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXipPWxar1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXipPWxar1 .mbr-section-title {
  text-align: left;
}
.cid-sXir0bNkty {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sXir0bNkty .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sXir0bNkty img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sXir0bNkty .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWN0xEyim1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWN0xEyim1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWN0xEyim1 .mbr-text {
  text-align: left;
}
.cid-tL5PkWC42o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5PkWC42o .mbr-section-title {
  text-align: left;
}
.cid-tL5PkWC42o .mbr-text {
  text-align: left;
}
.cid-sXivMUIRxg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXivMUIRxg .video-wrapper iframe {
  width: 100%;
}
.cid-sXivMUIRxg .mbr-section-title,
.cid-sXivMUIRxg .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXivMUIRxg .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXivMUIRxg .mbr-section-title {
  text-align: left;
}
.cid-sWMZlxUBax {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWMZlxUBax .mbr-section-subtitle {
  text-align: left;
}
.cid-sWMZlxUBax .mbr-section-title {
  text-align: left;
}
.cid-sWN0D2O1SI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWN0D2O1SI .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWN0D2O1SI .mbr-text {
  text-align: left;
}
.cid-sXiB7fMnAf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXiB7fMnAf .mbr-section-subtitle {
  text-align: left;
}
.cid-sXiB7fMnAf .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sXiB7fMnAf .mbr-section-title {
  text-align: left;
}
.cid-sXiBVZknoT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXiBVZknoT .video-wrapper iframe {
  width: 100%;
}
.cid-sXiBVZknoT .mbr-section-title,
.cid-sXiBVZknoT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXiBVZknoT .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXiBVZknoT .mbr-section-title {
  text-align: left;
}
.cid-sWN0DLhtgm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWN0DLhtgm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWN0DLhtgm .mbr-text {
  text-align: left;
}
.cid-sXjgkfFZDa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXjgkfFZDa .mbr-section-subtitle {
  text-align: left;
}
.cid-sXjgkfFZDa .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sXjgkfFZDa .mbr-section-title {
  text-align: left;
}
.cid-sWMZmtoMop {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWMZmtoMop .mbr-section-subtitle {
  text-align: left;
}
.cid-sWMZmtoMop .mbr-section-title {
  text-align: left;
}
.cid-sWN0ERRMKh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWN0ERRMKh .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWN0ERRMKh .mbr-text {
  text-align: left;
}
.cid-tL5PsMiusl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5PsMiusl .mbr-section-title {
  text-align: left;
}
.cid-tL5PsMiusl .mbr-text {
  text-align: left;
}
.cid-sXjmfcvZac {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sXjmfcvZac .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sXjmfcvZac img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sXjmfcvZac .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWN0EjeR2J {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWN0EjeR2J .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWN0EjeR2J .mbr-text {
  text-align: left;
}
.cid-tL5PAiJCJf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5PAiJCJf .mbr-section-title {
  text-align: left;
}
.cid-tL5PAiJCJf .mbr-text {
  text-align: left;
}
.cid-sXjpct8hqd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXjpct8hqd .video-wrapper iframe {
  width: 100%;
}
.cid-sXjpct8hqd .mbr-section-title,
.cid-sXjpct8hqd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXjpct8hqd .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXjpct8hqd .mbr-section-title {
  text-align: left;
}
.cid-sXjjFRgSjl {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXjjFRgSjl .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXjjFRgSjl .mbr-text {
  text-align: left;
}
.cid-tL5PI3emYk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5PI3emYk .mbr-section-title {
  text-align: left;
}
.cid-tL5PI3emYk .mbr-text {
  text-align: left;
}
.cid-sXjrf3g9qz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXjrf3g9qz .video-wrapper iframe {
  width: 100%;
}
.cid-sXjrf3g9qz .mbr-section-title,
.cid-sXjrf3g9qz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXjrf3g9qz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXjrf3g9qz .mbr-section-title {
  text-align: left;
}
.cid-sXjkzYIyk4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXjkzYIyk4 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXjkzYIyk4 .mbr-text {
  text-align: left;
}
.cid-tL5Q40s6zE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5Q40s6zE .mbr-section-title {
  text-align: left;
}
.cid-tL5Q40s6zE .mbr-text {
  text-align: left;
}
.cid-sXjsAI8Aau {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXjsAI8Aau .video-wrapper iframe {
  width: 100%;
}
.cid-sXjsAI8Aau .mbr-section-title,
.cid-sXjsAI8Aau .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXjsAI8Aau .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXjsAI8Aau .mbr-section-title {
  text-align: left;
}
.cid-sWMZoaP9L4 {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWMZoaP9L4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWMZoaP9L4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWMZoaP9L4 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpGeCYCh {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpGeCYCh .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUqmG3pMOG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUqmG3pMOG .mbr-section-subtitle {
  text-align: left;
}
.cid-sUqmG3pMOG .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sUqmG3pMOG .mbr-section-title {
  text-align: left;
}
.cid-sUqmG4mwGf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sUqmG4mwGf .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUqmG4mwGf .mbr-text {
  text-align: left;
}
.cid-sV5PMy5B8Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sV5PMy5B8Y .counter-container ol {
  margin-bottom: 0;
}
.cid-sV5PMy5B8Y .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sVtaDZHW1Z {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVtaDZHW1Z .mbr-section-subtitle {
  text-align: left;
}
.cid-sVtaDZHW1Z .mbr-section-title {
  text-align: left;
}
.cid-sVQzAoIcqd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQzAoIcqd .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQzAoIcqd .mbr-text {
  text-align: left;
}
.cid-sVQzQi3bf7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQzQi3bf7 .video-wrapper iframe {
  width: 100%;
}
.cid-sVQzQi3bf7 .mbr-section-title,
.cid-sVQzQi3bf7 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQzQi3bf7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQzQi3bf7 .mbr-section-title {
  text-align: left;
}
.cid-sVQzIqJNbF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQzIqJNbF .mbr-section-subtitle {
  text-align: left;
}
.cid-sVtb4Fm3qo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVtb4Fm3qo .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVtb4Fm3qo .mbr-text {
  text-align: left;
}
.cid-sVtcCWOv2b {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVtcCWOv2b .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sVtcCWOv2b .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sVtcCWOv2b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sVtcCWOv2b .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sVtcCWOv2b .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sVtcCWOv2b .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sVtcCWOv2b .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sVtcCWOv2b .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sVtcCWOv2b .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sVtcCWOv2b .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tL06Yqm9R6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL06Yqm9R6 .mbr-section-title {
  text-align: left;
}
.cid-tL06Yqm9R6 .mbr-text {
  text-align: left;
}
.cid-sVte5SiUQ4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVte5SiUQ4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVte5SiUQ4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVte5SiUQ4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tL05VM1eJE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL05VM1eJE .mbr-section-title {
  text-align: left;
}
.cid-tL05VM1eJE .mbr-text {
  text-align: left;
}
.cid-sVtmFOtxvx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVtmFOtxvx .video-wrapper iframe {
  width: 100%;
}
.cid-sVtmFOtxvx .mbr-section-title,
.cid-sVtmFOtxvx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVtmFOtxvx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVtmFOtxvx .mbr-section-title {
  text-align: left;
}
.cid-sVtp77yu4j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVtp77yu4j .video-wrapper iframe {
  width: 100%;
}
.cid-sVtp77yu4j .mbr-section-title,
.cid-sVtp77yu4j .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVtp77yu4j .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVtp77yu4j .mbr-section-title {
  text-align: left;
}
.cid-sVtfOV0pgH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVtfOV0pgH .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVtfOV0pgH .mbr-text {
  text-align: left;
}
.cid-tL06rPxJhH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL06rPxJhH .mbr-section-title {
  text-align: left;
}
.cid-tL06rPxJhH .mbr-text {
  text-align: left;
}
.cid-sVthQFhDss {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVthQFhDss .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVthQFhDss img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVthQFhDss .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVtibEHZVp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sVtibEHZVp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVtibEHZVp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVtibEHZVp .text-wrapper {
    padding: 2rem;
  }
}
.cid-tL07piH2gi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL07piH2gi .mbr-section-title {
  text-align: left;
}
.cid-tL07piH2gi .mbr-text {
  text-align: left;
}
.cid-sVtjfzzMZj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVtjfzzMZj .video-wrapper iframe {
  width: 100%;
}
.cid-sVtjfzzMZj .mbr-section-title,
.cid-sVtjfzzMZj .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVtjfzzMZj .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVtjfzzMZj .mbr-section-title {
  text-align: left;
}
.cid-sVtlCyUmZj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVtlCyUmZj .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVtlCyUmZj .mbr-text {
  text-align: left;
}
.cid-tL05LOOMH0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL05LOOMH0 .mbr-section-title {
  text-align: left;
}
.cid-tL05LOOMH0 .mbr-text {
  text-align: left;
}
.cid-sVQPB4ULOX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQPB4ULOX .mbr-section-subtitle {
  text-align: left;
}
.cid-sVQPB4ULOX .mbr-section-title {
  text-align: left;
}
.cid-sVQQmDVYt1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQQmDVYt1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQQmDVYt1 .mbr-text {
  text-align: left;
}
.cid-tGaZL80OX8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQR0j8HpG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQR0j8HpG .video-wrapper iframe {
  width: 100%;
}
.cid-sVQR0j8HpG .mbr-section-title,
.cid-sVQR0j8HpG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQR0j8HpG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQR0j8HpG .mbr-section-title {
  text-align: left;
}
.cid-sVQR7a1qdi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQR7a1qdi .video-wrapper iframe {
  width: 100%;
}
.cid-sVQR7a1qdi .mbr-section-title,
.cid-sVQR7a1qdi .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQR7a1qdi .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQR7a1qdi .mbr-section-title {
  text-align: left;
}
.cid-sVQQnOKXrI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQQnOKXrI .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQQnOKXrI .mbr-text {
  text-align: left;
}
.cid-tGb0axm8wV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQR1x0EVx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQR1x0EVx .video-wrapper iframe {
  width: 100%;
}
.cid-sVQR1x0EVx .mbr-section-title,
.cid-sVQR1x0EVx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQR1x0EVx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQR1x0EVx .mbr-section-title {
  text-align: left;
}
.cid-sVQTRWivML {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQTRWivML .video-wrapper iframe {
  width: 100%;
}
.cid-sVQTRWivML .mbr-section-title,
.cid-sVQTRWivML .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQTRWivML .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQTRWivML .mbr-section-title {
  text-align: left;
}
.cid-sVQQpa1Efv {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQQpa1Efv .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQQpa1Efv .mbr-text {
  text-align: left;
}
.cid-tGb0gEif2h {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQR2I8fuH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQR2I8fuH .video-wrapper iframe {
  width: 100%;
}
.cid-sVQR2I8fuH .mbr-section-title,
.cid-sVQR2I8fuH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQR2I8fuH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQR2I8fuH .mbr-section-title {
  text-align: left;
}
.cid-sVQQiQkTR1 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQQiQkTR1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQQiQkTR1 .mbr-text {
  text-align: left;
}
.cid-tGb0n45n8p {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQR3JogNC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQR3JogNC .video-wrapper iframe {
  width: 100%;
}
.cid-sVQR3JogNC .mbr-section-title,
.cid-sVQR3JogNC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQR3JogNC .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQR3JogNC .mbr-section-title {
  text-align: left;
}
.cid-sVQQfZiQxJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQQfZiQxJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQQfZiQxJ .mbr-text {
  text-align: left;
}
.cid-tGb0o4Sc5r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQR4ApyEc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQR4ApyEc .video-wrapper iframe {
  width: 100%;
}
.cid-sVQR4ApyEc .mbr-section-title,
.cid-sVQR4ApyEc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQR4ApyEc .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQR4ApyEc .mbr-section-title {
  text-align: left;
}
.cid-sVQYoMxvqB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQYoMxvqB .video-wrapper iframe {
  width: 100%;
}
.cid-sVQYoMxvqB .mbr-section-title,
.cid-sVQYoMxvqB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQYoMxvqB .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQYoMxvqB .mbr-section-title {
  text-align: left;
}
.cid-sVQYPfWbO0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQYPfWbO0 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQYPfWbO0 .mbr-text {
  text-align: left;
}
.cid-tGb0oNNq63 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQZbImhGK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQZbImhGK .video-wrapper iframe {
  width: 100%;
}
.cid-sVQZbImhGK .mbr-section-title,
.cid-sVQZbImhGK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQZbImhGK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQZbImhGK .mbr-section-title {
  text-align: left;
}
.cid-sVQYQZcVwC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQYQZcVwC .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQYQZcVwC .mbr-text {
  text-align: left;
}
.cid-tGb0pQrLxq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQZcQFy0G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQZcQFy0G .video-wrapper iframe {
  width: 100%;
}
.cid-sVQZcQFy0G .mbr-section-title,
.cid-sVQZcQFy0G .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQZcQFy0G .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQZcQFy0G .mbr-section-title {
  text-align: left;
}
.cid-sVQz0TBnSx {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQz0TBnSx .mbr-section-subtitle {
  text-align: left;
}
.cid-sVQz0TBnSx .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sVQz0TBnSx .mbr-section-title {
  text-align: left;
}
.cid-sVQBoEfU3s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQBoEfU3s .mbr-section-subtitle {
  text-align: left;
}
.cid-tCrA1X1mbP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCrA1X1mbP .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCrA1X1mbP .mbr-text {
  text-align: left;
}
.cid-tL07KtCCF4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL07KtCCF4 .mbr-section-title {
  text-align: left;
}
.cid-tL07KtCCF4 .mbr-text {
  text-align: left;
}
.cid-tCqEghjC7w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCqEghjC7w .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCqEghjC7w .mbr-text {
  text-align: left;
}
.cid-tCqEwpV2WA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tCqEwpV2WA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCqEwpV2WA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCqEwpV2WA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpe2zKMM6z {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpe2zKMM6z .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tpe2zKMM6z .mbr-text {
  text-align: left;
}
.cid-tpe3os0V9V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpe3os0V9V .video-wrapper iframe {
  width: 100%;
}
.cid-tpe3os0V9V .mbr-section-title,
.cid-tpe3os0V9V .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpe3os0V9V .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpe3os0V9V .mbr-section-title {
  text-align: left;
}
.cid-sVQBbpcelB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQBbpcelB .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQBbpcelB .mbr-text {
  text-align: left;
}
.cid-tL089hCoKQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL089hCoKQ .mbr-section-title {
  text-align: left;
}
.cid-tL089hCoKQ .mbr-text {
  text-align: left;
}
.cid-sVQFya2jq0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sVQFya2jq0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVQFya2jq0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVQFya2jq0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tL08hx38jn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL08hx38jn .mbr-section-title {
  text-align: left;
}
.cid-tL08hx38jn .mbr-text {
  text-align: left;
}
.cid-sVQC1k7EI1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQC1k7EI1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQC1k7EI1 .mbr-text {
  text-align: left;
}
.cid-tGb0RignoB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUqmG8DVL4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUqmG8DVL4 .video-wrapper iframe {
  width: 100%;
}
.cid-sUqmG8DVL4 .mbr-section-title,
.cid-sUqmG8DVL4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUqmG8DVL4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUqmG8DVL4 .mbr-section-title {
  text-align: left;
}
.cid-sVQC9mZP2d {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQC9mZP2d .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQC9mZP2d .mbr-text {
  text-align: left;
}
.cid-tGb1hRs6Yr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQI7RynUX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQI7RynUX .video-wrapper iframe {
  width: 100%;
}
.cid-sVQI7RynUX .mbr-section-title,
.cid-sVQI7RynUX .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQI7RynUX .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQI7RynUX .mbr-section-title {
  text-align: left;
}
.cid-sVQIb2SdKe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQIb2SdKe .mbr-section-subtitle {
  text-align: left;
}
.cid-sVQK37B2wp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQK37B2wp .video-wrapper iframe {
  width: 100%;
}
.cid-sVQK37B2wp .mbr-section-title,
.cid-sVQK37B2wp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQK37B2wp .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQK37B2wp .mbr-section-title {
  text-align: left;
}
.cid-sVQL1njCp4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQL1njCp4 .video-wrapper iframe {
  width: 100%;
}
.cid-sVQL1njCp4 .mbr-section-title,
.cid-sVQL1njCp4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQL1njCp4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQL1njCp4 .mbr-section-title {
  text-align: left;
}
.cid-sVQLqq2HaX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQLqq2HaX .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQLqq2HaX .mbr-text {
  text-align: left;
}
.cid-tGb1h0oT40 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQMUsu187 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQMUsu187 .video-wrapper iframe {
  width: 100%;
}
.cid-sVQMUsu187 .mbr-section-title,
.cid-sVQMUsu187 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQMUsu187 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQMUsu187 .mbr-section-title {
  text-align: left;
}
.cid-sVQCtjy6dm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQCtjy6dm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVQCtjy6dm .mbr-text {
  text-align: left;
}
.cid-tGb1gdwWK4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVQOJLrB8u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sVQOJLrB8u .video-wrapper iframe {
  width: 100%;
}
.cid-sVQOJLrB8u .mbr-section-title,
.cid-sVQOJLrB8u .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sVQOJLrB8u .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVQOJLrB8u .mbr-section-title {
  text-align: left;
}
.cid-sWdSSIcppj {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWdSSIcppj .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWdSSIcppj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWdSSIcppj .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJibzjj4n {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJibzjj4n .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWuFtg2Vyi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWuFtg2Vyi .mbr-section-subtitle {
  text-align: left;
}
.cid-sWuFtg2Vyi .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWuFtg2Vyi .mbr-section-title {
  text-align: left;
}
.cid-sWuFugyHL7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWuFugyHL7 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWuFugyHL7 .mbr-text {
  text-align: left;
}
.cid-sWuFHyz39w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sWuFHyz39w .counter-container ol {
  margin-bottom: 0;
}
.cid-sWuFHyz39w .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sWEeGD1U9G {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWEeGD1U9G .mbr-section-subtitle {
  text-align: left;
}
.cid-sWEeGD1U9G .mbr-section-title {
  text-align: left;
}
.cid-sWEfZkJBZz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWEfZkJBZz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sWEfZkJBZz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sWEfZkJBZz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWEjf5XeGN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWEjf5XeGN .video-wrapper iframe {
  width: 100%;
}
.cid-sWEjf5XeGN .mbr-section-title,
.cid-sWEjf5XeGN .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWEjf5XeGN .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWEjf5XeGN .mbr-section-title {
  text-align: left;
}
.cid-sWEhMDkyZq {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWEhMDkyZq .mbr-section-subtitle {
  text-align: left;
}
.cid-sWEhMDkyZq .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWEhMDkyZq .mbr-section-title {
  text-align: left;
}
.cid-sWEs4DILf0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWEs4DILf0 .mbr-section-subtitle {
  text-align: left;
}
.cid-sWEs4DILf0 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWEs4DILf0 .mbr-section-title {
  text-align: left;
}
.cid-sWEt8e9hFB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWEt8e9hFB .video-wrapper iframe {
  width: 100%;
}
.cid-sWEt8e9hFB .mbr-section-title,
.cid-sWEt8e9hFB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWEt8e9hFB .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWEt8e9hFB .mbr-section-title {
  text-align: left;
}
.cid-tL5GZPdTvH {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5GZPdTvH .mbr-section-title {
  text-align: left;
}
.cid-tL5GZPdTvH .mbr-text {
  text-align: left;
}
.cid-sWEz5LOeOl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWEz5LOeOl .mbr-section-subtitle {
  text-align: left;
}
.cid-sWEz5LOeOl .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWEz5LOeOl .mbr-section-title {
  text-align: left;
}
.cid-sWuFWeYQvk {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWuFWeYQvk .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWuFWeYQvk .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWuFWeYQvk .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpze18Ui {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpze18Ui .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUqmTdJk40 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUqmTdJk40 .mbr-section-subtitle {
  text-align: left;
}
.cid-sUqmTdJk40 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sUqmTdJk40 .mbr-section-title {
  text-align: left;
}
.cid-sUqmTe4BQG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sUqmTe4BQG .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUqmTe4BQG .mbr-text {
  text-align: left;
}
.cid-sWFp9xQuiA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sWFp9xQuiA .counter-container ol {
  margin-bottom: 0;
}
.cid-sWFp9xQuiA .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tL5HGrNp8d {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWKUFzN3QO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWKUFzN3QO .mbr-section-subtitle {
  text-align: left;
}
.cid-sWKUFzN3QO .mbr-section-title {
  text-align: left;
}
.cid-tL5JgRr9wP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5JHVs4TN {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5JHVs4TN .mbr-section-title {
  text-align: left;
}
.cid-tL5JHVs4TN .mbr-text {
  text-align: left;
}
.cid-sWEIVw3a4T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWEIVw3a4T .video-wrapper iframe {
  width: 100%;
}
.cid-sWEIVw3a4T .mbr-section-title,
.cid-sWEIVw3a4T .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWEIVw3a4T .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWEIVw3a4T .mbr-section-title {
  text-align: left;
}
.cid-tL5KtehQIs {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5KtehQIs .mbr-section-title {
  text-align: left;
}
.cid-tL5KtehQIs .mbr-text {
  text-align: left;
}
.cid-sWL4PBV79I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWL4PBV79I .video-wrapper iframe {
  width: 100%;
}
.cid-sWL4PBV79I .mbr-section-title,
.cid-sWL4PBV79I .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWL4PBV79I .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWL4PBV79I .mbr-section-title {
  text-align: left;
}
.cid-sWL5z6Wex3 {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWL5z6Wex3 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWL5z6Wex3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWL5z6Wex3 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpCprhbW {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpCprhbW .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUjTMmJk1n {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUjTMmJk1n .mbr-section-subtitle {
  text-align: left;
}
.cid-sUjTMmJk1n .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sUjTMmJk1n .mbr-section-title {
  text-align: left;
}
.cid-sUjTN7stfs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sUjTN7stfs .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUjTN7stfs .mbr-text {
  text-align: left;
}
.cid-sUjTGuYoVW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sUjTGuYoVW .counter-container ol {
  margin-bottom: 0;
}
.cid-sUjTGuYoVW .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sUrjeQOhRe {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrjeQOhRe .mbr-section-subtitle {
  text-align: left;
}
.cid-sUrjeQOhRe .mbr-section-title {
  text-align: left;
}
.cid-sUrkh7bFSo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUrkh7bFSo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUrkh7bFSo .row {
  flex-direction: row-reverse;
}
.cid-sUrkh7bFSo img {
  width: 100%;
}
.cid-sUrkRiW0nP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrkRiW0nP .mbr-section-subtitle {
  text-align: left;
}
.cid-sUrkRiW0nP .mbr-section-title {
  text-align: left;
}
.cid-sUrjsWBqXF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUrjsWBqXF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUrjsWBqXF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUrjsWBqXF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUrmeirXBI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrmeirXBI .mbr-section-subtitle {
  text-align: left;
}
.cid-sUrmeirXBI .mbr-section-title {
  text-align: left;
}
.cid-sUrmDDyKji {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUrmDDyKji .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUrmDDyKji img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUrmDDyKji .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUro8ef00r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUro8ef00r .video-wrapper iframe {
  width: 100%;
}
.cid-sUro8ef00r .mbr-section-title,
.cid-sUro8ef00r .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUro8ef00r .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUro8ef00r .mbr-section-title {
  text-align: left;
}
.cid-sUrny9xZmH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUrny9xZmH .video-wrapper iframe {
  width: 100%;
}
.cid-sUrny9xZmH .mbr-section-title,
.cid-sUrny9xZmH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUrny9xZmH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUrny9xZmH .mbr-section-title {
  text-align: left;
}
.cid-tKKUZW6JcQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrpIalbRa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrpIalbRa .mbr-section-subtitle {
  text-align: left;
}
.cid-sUrpIalbRa .mbr-section-title {
  text-align: left;
}
.cid-sUrq1VkOgA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUrq1VkOgA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUrq1VkOgA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUrq1VkOgA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tKOiQoOfu8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrr0JdhN2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrr0JdhN2 .mbr-section-subtitle {
  text-align: left;
}
.cid-sUrr0JdhN2 .mbr-section-title {
  text-align: left;
}
.cid-sUrr9z2DwD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUrr9z2DwD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUrr9z2DwD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUrr9z2DwD .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUrs29bs78 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUrs29bs78 .mbr-section-subtitle {
  text-align: left;
}
.cid-sUrs29bs78 .mbr-section-title {
  text-align: left;
}
.cid-sUru2TR50Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUru2TR50Q .video-wrapper iframe {
  width: 100%;
}
.cid-sUru2TR50Q .mbr-section-title,
.cid-sUru2TR50Q .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUru2TR50Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUru2TR50Q .mbr-section-title {
  text-align: left;
}
.cid-tmkkrIQtRQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tmkkrIQtRQ .mbr-section-subtitle {
  text-align: left;
}
.cid-tmkkrIQtRQ .mbr-section-title {
  text-align: left;
}
.cid-sWg207Smgk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWg207Smgk .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWg207Smgk .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWg207Smgk .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFwvFGji0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFwvFGji0 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sULf6fU7HX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULf6fU7HX .mbr-section-title {
  text-align: left;
}
.cid-sULf6fU7HX .mbr-section-subtitle {
  text-align: left;
}
.cid-sULf6gwIVs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULf6gwIVs .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sULf6gwIVs .mbr-text {
  text-align: left;
}
.cid-sULf6gOLlb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sULf6gOLlb .counter-container ol {
  margin-bottom: 0;
}
.cid-sULf6gOLlb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sUMogskYzn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUMogskYzn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUMogskYzn .row {
  flex-direction: row-reverse;
}
.cid-sUMogskYzn img {
  width: 100%;
}
.cid-sUMogskYzn .mbr-description {
  text-align: right;
}
.cid-sULf6h6XfS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULf6h6XfS .mbr-section-subtitle {
  text-align: left;
}
.cid-sULf6h6XfS .mbr-section-title {
  text-align: left;
}
.cid-sULf6jqqBo {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULf6jqqBo .mbr-section-subtitle {
  text-align: left;
}
.cid-sULf6jqqBo .mbr-section-title {
  text-align: left;
}
.cid-sUMmS2tvYH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUMmS2tvYH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUMmS2tvYH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUMmS2tvYH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUMnvmvljm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUMnvmvljm .mbr-section-subtitle {
  text-align: left;
}
.cid-sULkcmCrC7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULkcmCrC7 .mbr-section-subtitle {
  text-align: left;
}
.cid-sULkcmCrC7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sULkcmCrC7 .mbr-section-title {
  text-align: left;
}
.cid-sULk4HKs7h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sULk4HKs7h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sULk4HKs7h img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sULk4HKs7h .text-wrapper {
    padding: 2rem;
  }
}
.cid-sULkwHf91S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULkwHf91S .mbr-section-subtitle {
  text-align: left;
}
.cid-sULkwHf91S .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sULkwHf91S .mbr-section-title {
  text-align: left;
}
.cid-sULf6i2tIp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sULf6i2tIp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sULf6i2tIp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sULf6i2tIp .text-wrapper {
    padding: 2rem;
  }
}
.cid-sULluvmceR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sULluvmceR .mbr-section-subtitle {
  text-align: left;
}
.cid-sULluvmceR .mbr-section-title {
  text-align: left;
}
.cid-sWijUf1CiM {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWijUf1CiM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWijUf1CiM .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWijUf1CiM .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFWNFrA0b {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFWNFrA0b .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUQBX6BFAi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUQBX6BFAi .mbr-section-title {
  text-align: left;
}
.cid-sUQBX6BFAi .mbr-section-subtitle {
  text-align: left;
}
.cid-sUQBX71KHl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUQBX71KHl .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUQBX71KHl .mbr-text {
  text-align: left;
}
.cid-sUQBX7jnWA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sUQBX7jnWA .counter-container ol {
  margin-bottom: 0;
}
.cid-sUQBX7jnWA .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-toMXcBVZQ4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-toMXcBVZQ4 .mbr-section-subtitle {
  text-align: left;
}
.cid-toMXcBVZQ4 .mbr-section-title {
  text-align: left;
}
.cid-sUZL48qFXH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUZL48qFXH .video-wrapper iframe {
  width: 100%;
}
.cid-sUZL48qFXH .mbr-section-title,
.cid-sUZL48qFXH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUZL48qFXH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUZL48qFXH .mbr-section-title {
  text-align: left;
}
.cid-sUZIRFujv0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUZIRFujv0 .mbr-section-subtitle {
  text-align: left;
}
.cid-sUZIRFujv0 .mbr-section-title {
  text-align: left;
}
.cid-sUUwnJGAvq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUUwnJGAvq .mbr-section-subtitle {
  text-align: left;
}
.cid-sUUwnJGAvq .mbr-section-title {
  text-align: left;
}
.cid-sWphlK4RZK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWphlK4RZK .mbr-section-subtitle {
  text-align: left;
}
.cid-sWphlK4RZK .mbr-section-title {
  text-align: left;
}
.cid-sWpitMj5AR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWpitMj5AR .video-wrapper iframe {
  width: 100%;
}
.cid-sWpitMj5AR .mbr-section-title,
.cid-sWpitMj5AR .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWpitMj5AR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWpitMj5AR .mbr-section-title {
  text-align: left;
}
.cid-sYZFpIjWh5 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYZFpIjWh5 .mbr-section-subtitle {
  text-align: left;
}
.cid-sYZFpIjWh5 .mbr-section-title {
  text-align: left;
}
.cid-sYZHnXSa2M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYZHnXSa2M .video-wrapper iframe {
  width: 100%;
}
.cid-sYZHnXSa2M .mbr-section-title,
.cid-sYZHnXSa2M .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYZHnXSa2M .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYZHnXSa2M .mbr-section-title {
  text-align: left;
}
.cid-sYZHMtdqpU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYZHMtdqpU .mbr-section-subtitle {
  text-align: left;
}
.cid-sYZHMtdqpU .mbr-section-title {
  text-align: left;
}
.cid-sV09bpwCPj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sV09bpwCPj .mbr-section-subtitle {
  text-align: left;
}
.cid-sV09bpwCPj .mbr-section-title {
  text-align: left;
}
.cid-sV0b4s50XL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sV0b4s50XL .video-wrapper iframe {
  width: 100%;
}
.cid-sV0b4s50XL .mbr-section-title,
.cid-sV0b4s50XL .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sV0b4s50XL .text-wrapper {
    padding: 2rem;
  }
}
.cid-sV0b4s50XL .mbr-section-title {
  text-align: left;
}
.cid-sV0d3RZD3f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sV0d3RZD3f .video-wrapper iframe {
  width: 100%;
}
.cid-sV0d3RZD3f .mbr-section-title,
.cid-sV0d3RZD3f .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sV0d3RZD3f .text-wrapper {
    padding: 2rem;
  }
}
.cid-sV0d3RZD3f .mbr-section-title {
  text-align: left;
}
.cid-tmkXn5w92D {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmkXn5w92D .mbr-section-subtitle {
  text-align: left;
}
.cid-tmkXn5w92D .mbr-section-title {
  text-align: left;
}
.cid-sUZYI9nNMd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUZYI9nNMd .video-wrapper iframe {
  width: 100%;
}
.cid-sUZYI9nNMd .mbr-section-title,
.cid-sUZYI9nNMd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sUZYI9nNMd .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUZYI9nNMd .mbr-section-title {
  text-align: left;
}
.cid-sV00bCCCVX {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sV00bCCCVX .mbr-section-subtitle {
  text-align: left;
}
.cid-sV00bCCCVX .mbr-section-title {
  text-align: left;
}
.cid-sV02rfmriH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sV02rfmriH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sV02rfmriH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sV02rfmriH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWiv8OQgjc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWiv8OQgjc .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWiv8OQgjc .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWiv8OQgjc .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFWSsewGG {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFWSsewGG .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUU8nsAjBO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUU8nsAjBO .mbr-section-title {
  text-align: left;
}
.cid-sUU8nsAjBO .mbr-section-subtitle {
  text-align: left;
}
.cid-sUU8nt8ihQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUU8nt8ihQ .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUU8nt8ihQ .mbr-text {
  text-align: left;
}
.cid-sUU8ntuLT3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sUU8ntuLT3 .counter-container ol {
  margin-bottom: 0;
}
.cid-sUU8ntuLT3 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sUU8nu7PH3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUU8nu7PH3 .mbr-section-subtitle {
  text-align: left;
}
.cid-sUU8nu7PH3 .mbr-section-title {
  text-align: left;
}
.cid-sUU8nuAxdM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUU8nuAxdM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUU8nuAxdM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUU8nuAxdM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tml1I5EqQM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tml1I5EqQM .mbr-section-subtitle {
  text-align: left;
}
.cid-tml1I5EqQM .mbr-section-title {
  text-align: left;
}
.cid-tm9TCkF243 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tm9TCkF243 .video-wrapper iframe {
  width: 100%;
}
.cid-tm9TCkF243 .mbr-section-title,
.cid-tm9TCkF243 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tm9TCkF243 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tm9TCkF243 .mbr-section-title {
  text-align: left;
}
.cid-tm9R5HnVvD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tm9R5HnVvD .video-wrapper iframe {
  width: 100%;
}
.cid-tm9R5HnVvD .mbr-section-title,
.cid-tm9R5HnVvD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tm9R5HnVvD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tm9R5HnVvD .mbr-section-title {
  text-align: left;
}
.cid-sUU8nvTIIk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUU8nvTIIk .mbr-section-subtitle {
  text-align: left;
}
.cid-sUU8nvTIIk .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sUU8nvTIIk .mbr-section-title {
  text-align: left;
}
.cid-sUUcbLagQq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUUcbLagQq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUUcbLagQq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUUcbLagQq .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUUgiWZVQ8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sUUgiWZVQ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUUgiWZVQ8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUUgiWZVQ8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUUhvoEsPO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sUUhvoEsPO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUUhvoEsPO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUUhvoEsPO .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUUjpvgMUY {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sUUjpvgMUY .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sUUjpvgMUY .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sUUjpvgMUY .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvFWVOEZeB {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFWVOEZeB .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWpx7qxEJ8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWpx7qxEJ8 .mbr-section-subtitle {
  text-align: left;
}
.cid-sWpx7qxEJ8 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWpx7qxEJ8 .mbr-section-title {
  text-align: left;
}
.cid-tarjhLBPqv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tarjhLBPqv .mbr-section-subtitle {
  text-align: left;
}
.cid-tarjhLBPqv .mbr-section-title {
  text-align: left;
}
.cid-sWpx8L0HfO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWpx8L0HfO .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWpx8L0HfO .mbr-text {
  text-align: left;
}
.cid-tvJEihCFQY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJEihCFQY .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJEihCFQY .currentcost {
  color: #232323;
}
.cid-tvJEihCFQY .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tvJEihCFQY .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJEihCFQY .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJEihCFQY .text-box {
    padding: 1rem;
  }
}
.cid-tvJEihCFQY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJEKKLTLm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJEKKLTLm .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJEKKLTLm .currentcost {
  color: #232323;
}
.cid-tvJEKKLTLm .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tvJEKKLTLm .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJEKKLTLm .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJEKKLTLm .text-box {
    padding: 1rem;
  }
}
.cid-tvJEKKLTLm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJGY10VTk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJGY10VTk .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJGY10VTk .currentcost {
  color: #232323;
}
.cid-tvJGY10VTk .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tvJGY10VTk .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJGY10VTk .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJGY10VTk .text-box {
    padding: 1rem;
  }
}
.cid-tvJGY10VTk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJF6zt7rv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJF6zt7rv .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJF6zt7rv .currentcost {
  color: #232323;
}
.cid-tvJF6zt7rv .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tvJF6zt7rv .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJF6zt7rv .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJF6zt7rv .text-box {
    padding: 1rem;
  }
}
.cid-tvJF6zt7rv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJG9i8fht {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJG9i8fht .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJG9i8fht .currentcost {
  color: #232323;
}
.cid-tvJG9i8fht .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tvJG9i8fht .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJG9i8fht .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJG9i8fht .text-box {
    padding: 1rem;
  }
}
.cid-tvJG9i8fht .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJHu4aodO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvJHu4aodO .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvJHu4aodO .currentcost {
  color: #232323;
}
.cid-tvJHu4aodO .card-wrapper {
  border-radius: 4px;
  background: #f8c2c2;
}
@media (min-width: 992px) {
  .cid-tvJHu4aodO .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvJHu4aodO .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvJHu4aodO .text-box {
    padding: 1rem;
  }
}
.cid-tvJHu4aodO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJI5pTnPr {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJI5pTnPr .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVO9yqwlF2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVO9yqwlF2 .mbr-section-subtitle {
  text-align: left;
}
.cid-sVO9yqwlF2 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sVO9yqwlF2 .mbr-section-title {
  text-align: left;
}
.cid-sVO9yrFHGP {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sVO9yrFHGP .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVO9yrFHGP .mbr-text {
  text-align: left;
}
.cid-sVO9yrZMAa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sVO9yrZMAa .counter-container ol {
  margin-bottom: 0;
}
.cid-sVO9yrZMAa .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sVO9ysjLff {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVO9ysjLff .mbr-section-subtitle {
  text-align: left;
}
.cid-sVO9ysjLff .mbr-section-title {
  text-align: left;
}
.cid-sW5Vs6RgHI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sW5Vs6RgHI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sW5Vs6RgHI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sW5Vs6RgHI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpe7KGakPN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #dbdbdb;
}
.cid-tpe7KGakPN .mbr-section-subtitle {
  text-align: left;
}
.cid-tpe7KGakPN .mbr-section-title {
  text-align: left;
}
.cid-sVTFNvjJ8e {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTFNvjJ8e .mbr-section-subtitle {
  text-align: left;
}
.cid-sVTFNvjJ8e .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sVTFNvjJ8e .mbr-section-title {
  text-align: left;
}
.cid-sW64Nl3iL7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sW64Nl3iL7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sW64Nl3iL7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sW64Nl3iL7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6kqRPY4R {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sW6kqRPY4R .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sW6kqRPY4R .mbr-text {
  text-align: left;
}
.cid-sW6dMX0xL9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW6dMX0xL9 .video-wrapper iframe {
  width: 100%;
}
.cid-sW6dMX0xL9 .mbr-section-title,
.cid-sW6dMX0xL9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW6dMX0xL9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6dMX0xL9 .mbr-section-title {
  text-align: left;
}
.cid-sW66vrqTpp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW66vrqTpp .video-wrapper iframe {
  width: 100%;
}
.cid-sW66vrqTpp .mbr-section-title,
.cid-sW66vrqTpp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW66vrqTpp .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW66vrqTpp .mbr-section-title {
  text-align: left;
}
.cid-sW68CrCAb6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW68CrCAb6 .video-wrapper iframe {
  width: 100%;
}
.cid-sW68CrCAb6 .mbr-section-title,
.cid-sW68CrCAb6 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW68CrCAb6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW68CrCAb6 .mbr-section-title {
  text-align: left;
}
.cid-sW691NyIBW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW691NyIBW .video-wrapper iframe {
  width: 100%;
}
.cid-sW691NyIBW .mbr-section-title,
.cid-sW691NyIBW .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW691NyIBW .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW691NyIBW .mbr-section-title {
  text-align: left;
}
.cid-sW6cmKBbfq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW6cmKBbfq .video-wrapper iframe {
  width: 100%;
}
.cid-sW6cmKBbfq .mbr-section-title,
.cid-sW6cmKBbfq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW6cmKBbfq .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6cmKBbfq .mbr-section-title {
  text-align: left;
}
.cid-sW6cVWLHy8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW6cVWLHy8 .video-wrapper iframe {
  width: 100%;
}
.cid-sW6cVWLHy8 .mbr-section-title,
.cid-sW6cVWLHy8 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW6cVWLHy8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6cVWLHy8 .mbr-section-title {
  text-align: left;
}
.cid-sW6a0MHeyK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW6a0MHeyK .video-wrapper iframe {
  width: 100%;
}
.cid-sW6a0MHeyK .mbr-section-title,
.cid-sW6a0MHeyK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW6a0MHeyK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6a0MHeyK .mbr-section-title {
  text-align: left;
}
.cid-sW6euGNSLT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW6euGNSLT .video-wrapper iframe {
  width: 100%;
}
.cid-sW6euGNSLT .mbr-section-title,
.cid-sW6euGNSLT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW6euGNSLT .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6euGNSLT .mbr-section-title {
  text-align: left;
}
.cid-sW6h1cE5Hp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sW6h1cE5Hp .video-wrapper iframe {
  width: 100%;
}
.cid-sW6h1cE5Hp .mbr-section-title,
.cid-sW6h1cE5Hp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sW6h1cE5Hp .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6h1cE5Hp .mbr-section-title {
  text-align: left;
}
.cid-sW6idTkkFx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sW6idTkkFx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sW6idTkkFx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sW6idTkkFx .text-wrapper {
    padding: 2rem;
  }
}
.cid-sW6khBnXcM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sW6khBnXcM .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sW6khBnXcM .mbr-text {
  text-align: left;
}
.cid-sW69XhuK5N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sW69XhuK5N .mbr-section-subtitle {
  text-align: left;
}
.cid-sW69XhuK5N .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sW69XhuK5N .mbr-section-title {
  text-align: left;
}
.cid-sVTFLXs1Ws {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTFLXs1Ws .mbr-section-subtitle {
  text-align: left;
}
.cid-sVTFLXs1Ws .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sVTFLXs1Ws .mbr-section-title {
  text-align: left;
}
.cid-sVTGHVKZhu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGHVKZhu .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGHVKZhu .mbr-text {
  text-align: left;
}
.cid-tGb30hCGKJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWaMEAmZFr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWaMEAmZFr .mbr-section-subtitle {
  text-align: left;
}
.cid-sWaMEAmZFr .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWaMEAmZFr .mbr-section-title {
  text-align: left;
}
.cid-sWaJJjocIJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWaJJjocIJ .video-wrapper iframe {
  width: 100%;
}
.cid-sWaJJjocIJ .mbr-section-title,
.cid-sWaJJjocIJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWaJJjocIJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWaJJjocIJ .mbr-section-title {
  text-align: left;
}
.cid-sVTGPvLk6B {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGPvLk6B .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGPvLk6B .mbr-text {
  text-align: left;
}
.cid-tGb3171jMM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWaPgAmsib {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWaPgAmsib .mbr-section-subtitle {
  text-align: left;
}
.cid-sWaPgAmsib .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWaPgAmsib .mbr-section-title {
  text-align: left;
}
.cid-sVTGQjABmH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGQjABmH .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGQjABmH .mbr-text {
  text-align: left;
}
.cid-tGb3e0mxFf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWb9r30S8m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWb9r30S8m .video-wrapper iframe {
  width: 100%;
}
.cid-sWb9r30S8m .mbr-section-title,
.cid-sWb9r30S8m .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWb9r30S8m .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWb9r30S8m .mbr-section-title {
  text-align: left;
}
.cid-sWbaqT8AHd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWbaqT8AHd .video-wrapper iframe {
  width: 100%;
}
.cid-sWbaqT8AHd .mbr-section-title,
.cid-sWbaqT8AHd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWbaqT8AHd .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWbaqT8AHd .mbr-section-title {
  text-align: left;
}
.cid-sVTGR6rcSZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGR6rcSZ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGR6rcSZ .mbr-text {
  text-align: left;
}
.cid-tGb329HRYr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWbcH465B5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWbcH465B5 .video-wrapper iframe {
  width: 100%;
}
.cid-sWbcH465B5 .mbr-section-title,
.cid-sWbcH465B5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWbcH465B5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWbcH465B5 .mbr-section-title {
  text-align: left;
}
.cid-sVTGSPen1C {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGSPen1C .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGSPen1C .mbr-text {
  text-align: left;
}
.cid-tGb33g7moL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWbellZaBm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sWbellZaBm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sWbellZaBm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sWbellZaBm .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVTGVfPeM1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGVfPeM1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGVfPeM1 .mbr-text {
  text-align: left;
}
.cid-sWbG08ViO3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWbG08ViO3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sWbG08ViO3 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sWbG08ViO3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWbG08ViO3 .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sWbG08ViO3 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sWbG08ViO3 .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sWbG08ViO3 .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sWbG08ViO3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sWbG08ViO3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWbG08ViO3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tGb35frYLU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5EASAqpU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL5EASAqpU .mbr-section-title {
  text-align: left;
}
.cid-tL5EASAqpU .mbr-text {
  text-align: left;
}
.cid-sWbIIu7m6h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWbIIu7m6h .video-wrapper iframe {
  width: 100%;
}
.cid-sWbIIu7m6h .mbr-section-title,
.cid-sWbIIu7m6h .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWbIIu7m6h .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWbIIu7m6h .mbr-section-title {
  text-align: left;
}
.cid-sWbIKI0Qdm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWbIKI0Qdm .video-wrapper iframe {
  width: 100%;
}
.cid-sWbIKI0Qdm .mbr-section-title,
.cid-sWbIKI0Qdm .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWbIKI0Qdm .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWbIKI0Qdm .mbr-section-title {
  text-align: left;
}
.cid-sWbIMbpTg6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWbIMbpTg6 .video-wrapper iframe {
  width: 100%;
}
.cid-sWbIMbpTg6 .mbr-section-title,
.cid-sWbIMbpTg6 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWbIMbpTg6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWbIMbpTg6 .mbr-section-title {
  text-align: left;
}
.cid-sVTGTyxDCA {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGTyxDCA .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGTyxDCA .mbr-text {
  text-align: left;
}
.cid-tGb3a8ZiUE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWclXPMCMI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWclXPMCMI .mbr-section-subtitle {
  text-align: left;
}
.cid-sWclXPMCMI .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWclXPMCMI .mbr-section-title {
  text-align: left;
}
.cid-sWcm8RGFDk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sWcm8RGFDk .video-wrapper iframe {
  width: 100%;
}
.cid-sWcm8RGFDk .mbr-section-title,
.cid-sWcm8RGFDk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sWcm8RGFDk .text-wrapper {
    padding: 2rem;
  }
}
.cid-sWcm8RGFDk .mbr-section-title {
  text-align: left;
}
.cid-sVTGUcjeEy {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVTGUcjeEy .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sVTGUcjeEy .mbr-text {
  text-align: left;
}
.cid-tGb3bfmYXT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWcoKr6tvw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWcoKr6tvw .mbr-section-subtitle {
  text-align: left;
}
.cid-sWcoKr6tvw .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sWcoKr6tvw .mbr-section-title {
  text-align: left;
}
.cid-sWdK8p03Dl {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWdK8p03Dl .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWdK8p03Dl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sWdK8p03Dl .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJpuaQp65 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJpuaQp65 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sX8yTBYHRM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sX8yTBYHRM .mbr-section-subtitle {
  text-align: left;
}
.cid-sX8yTBYHRM .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sX8yTBYHRM .mbr-section-title {
  text-align: left;
}
.cid-sX8z8XJIRR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sX8z8XJIRR .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sX8z8XJIRR .mbr-text {
  text-align: left;
}
.cid-sX8AhEFipI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sX8AhEFipI .counter-container ol {
  margin-bottom: 0;
}
.cid-sX8AhEFipI .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sX8EZ52bkr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sX8EZ52bkr .mbr-section-subtitle {
  text-align: left;
}
.cid-sX8EZ52bkr .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sX8EZ52bkr .mbr-section-title {
  text-align: left;
}
.cid-sX9d0w1l9i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sX9d0w1l9i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sX9d0w1l9i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sX9d0w1l9i .text-wrapper {
    padding: 2rem;
  }
}
.cid-tL7MfSL0iS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7MfSL0iS .mbr-section-title {
  text-align: left;
}
.cid-tL7MfSL0iS .mbr-text {
  text-align: left;
}
.cid-sX9ex5Nf4j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9ex5Nf4j .video-wrapper iframe {
  width: 100%;
}
.cid-sX9ex5Nf4j .mbr-section-title,
.cid-sX9ex5Nf4j .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9ex5Nf4j .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9ex5Nf4j .mbr-section-title {
  text-align: left;
}
.cid-sX9eMys3Wa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9eMys3Wa .video-wrapper iframe {
  width: 100%;
}
.cid-sX9eMys3Wa .mbr-section-title,
.cid-sX9eMys3Wa .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9eMys3Wa .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9eMys3Wa .mbr-section-title {
  text-align: left;
}
.cid-sX9g78Z9H0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9g78Z9H0 .video-wrapper iframe {
  width: 100%;
}
.cid-sX9g78Z9H0 .mbr-section-title,
.cid-sX9g78Z9H0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9g78Z9H0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9g78Z9H0 .mbr-section-title {
  text-align: left;
}
.cid-tL7MxO7coG {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7MxO7coG .mbr-section-title {
  text-align: left;
}
.cid-tL7MxO7coG .mbr-text {
  text-align: left;
}
.cid-sX9QftjPb1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9QftjPb1 .video-wrapper iframe {
  width: 100%;
}
.cid-sX9QftjPb1 .mbr-section-title,
.cid-sX9QftjPb1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9QftjPb1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9QftjPb1 .mbr-section-title {
  text-align: left;
}
.cid-sX9S1OWjsR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sX9S1OWjsR .mbr-section-subtitle {
  text-align: left;
}
.cid-sX9RoUMOYR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9RoUMOYR .video-wrapper iframe {
  width: 100%;
}
.cid-sX9RoUMOYR .mbr-section-title,
.cid-sX9RoUMOYR .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9RoUMOYR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9RoUMOYR .mbr-section-title {
  text-align: left;
}
.cid-sX9TwmBYkX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9TwmBYkX .video-wrapper iframe {
  width: 100%;
}
.cid-sX9TwmBYkX .mbr-section-title,
.cid-sX9TwmBYkX .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9TwmBYkX .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9TwmBYkX .mbr-section-title {
  text-align: left;
}
.cid-sX9TPT1P2I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9TPT1P2I .video-wrapper iframe {
  width: 100%;
}
.cid-sX9TPT1P2I .mbr-section-title,
.cid-sX9TPT1P2I .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9TPT1P2I .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9TPT1P2I .mbr-section-title {
  text-align: left;
}
.cid-tL7MXFv6LK {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7MXFv6LK .mbr-section-title {
  text-align: left;
}
.cid-tL7MXFv6LK .mbr-text {
  text-align: left;
}
.cid-sX8JQ44TgM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX8JQ44TgM .video-wrapper iframe {
  width: 100%;
}
.cid-sX8JQ44TgM .mbr-section-title,
.cid-sX8JQ44TgM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX8JQ44TgM .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX8JQ44TgM .mbr-section-title {
  text-align: left;
}
.cid-sX8LPhO9sF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX8LPhO9sF .video-wrapper iframe {
  width: 100%;
}
.cid-sX8LPhO9sF .mbr-section-title,
.cid-sX8LPhO9sF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX8LPhO9sF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX8LPhO9sF .mbr-section-title {
  text-align: left;
}
.cid-tL7Ni9B5Gq {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7Ni9B5Gq .mbr-section-title {
  text-align: left;
}
.cid-tL7Ni9B5Gq .mbr-text {
  text-align: left;
}
.cid-sX9W2e19vT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9W2e19vT .video-wrapper iframe {
  width: 100%;
}
.cid-sX9W2e19vT .mbr-section-title,
.cid-sX9W2e19vT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9W2e19vT .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9W2e19vT .mbr-section-title {
  text-align: left;
}
.cid-tL7NyOnzHd {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7NyOnzHd .mbr-section-title {
  text-align: left;
}
.cid-tL7NyOnzHd .mbr-text {
  text-align: left;
}
.cid-sX9XHh4lf0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sX9XHh4lf0 .video-wrapper iframe {
  width: 100%;
}
.cid-sX9XHh4lf0 .mbr-section-title,
.cid-sX9XHh4lf0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sX9XHh4lf0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sX9XHh4lf0 .mbr-section-title {
  text-align: left;
}
.cid-tL7O09SKup {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7O09SKup .mbr-section-title {
  text-align: left;
}
.cid-tL7O09SKup .mbr-text {
  text-align: left;
}
.cid-sXa05dUWAH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sXa05dUWAH .video-wrapper iframe {
  width: 100%;
}
.cid-sXa05dUWAH .mbr-section-title,
.cid-sXa05dUWAH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sXa05dUWAH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sXa05dUWAH .mbr-section-title {
  text-align: left;
}
.cid-sX8ClqWk4N {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sX8ClqWk4N .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sX8ClqWk4N .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sX8ClqWk4N .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJq97hsTU {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJq97hsTU .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sXLtrz27ro {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXLtrz27ro .mbr-section-subtitle {
  text-align: left;
}
.cid-sXLtrz27ro .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sXLtrz27ro .mbr-section-title {
  text-align: left;
}
.cid-sXLtq4mV4f {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sXLtq4mV4f .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sXLtq4mV4f .mbr-text {
  text-align: left;
}
.cid-sXLtsnlNKM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sXLtsnlNKM .counter-container ol {
  margin-bottom: 0;
}
.cid-sXLtsnlNKM .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sXLzVFORLY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXLzVFORLY .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sXLzVFORLY .mbr-section-title {
  text-align: left;
}
.cid-sXLzWDsXbG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXLzWDsXbG .mbr-section-subtitle {
  text-align: left;
}
.cid-sXLzWDsXbG .mbr-section-title {
  text-align: left;
}
.cid-sXLzXlMsAx {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sXLzXlMsAx .mbr-section-subtitle {
  text-align: left;
}
.cid-sXLzXlMsAx .mbr-section-title {
  text-align: left;
}
.cid-tvJJcEd49B {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJJcEd49B .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYaq9ueOIk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYaq9ueOIk .mbr-section-subtitle {
  text-align: left;
}
.cid-sYaq9ueOIk .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYaq9ueOIk .mbr-section-title {
  text-align: left;
}
.cid-sYaq9vUQ5K {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYaq9vUQ5K .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYaq9vUQ5K .mbr-text {
  text-align: left;
}
.cid-toWc4sVbHJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-toWc4sVbHJ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-toWc4sVbHJ .currentcost {
  color: #232323;
}
.cid-toWc4sVbHJ .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-toWc4sVbHJ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-toWc4sVbHJ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-toWc4sVbHJ .text-box {
    padding: 1rem;
  }
}
.cid-toWc4sVbHJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvJJkdZp1Y {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJJkdZp1Y .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYatrQBVWY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYatrQBVWY .mbr-section-subtitle {
  text-align: left;
}
.cid-sYatrQBVWY .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYatrQBVWY .mbr-section-title {
  text-align: left;
}
.cid-sYatt6PLih {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYatt6PLih .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYatt6PLih .mbr-text {
  text-align: left;
}
.cid-sYatuyu8lf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYatuyu8lf .counter-container ol {
  margin-bottom: 0;
}
.cid-sYatuyu8lf .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sYA3M0YxCw {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYA3M0YxCw .mbr-section-subtitle {
  text-align: left;
}
.cid-sYA3M0YxCw .mbr-section-title {
  text-align: left;
}
.cid-sYArNiq4x8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYArNiq4x8 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYArNiq4x8 .mbr-text {
  text-align: left;
}
.cid-sYEvoBPw5O {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYEvoBPw5O .mbr-section-subtitle {
  text-align: left;
}
.cid-sYEvoBPw5O .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYEvoBPw5O .mbr-section-title {
  text-align: left;
}
.cid-sYApqo41fa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYApqo41fa .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYApqo41fa .mbr-text {
  text-align: left;
}
.cid-sYFOGZqKcW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYFOGZqKcW .mbr-section-subtitle {
  text-align: left;
}
.cid-sYFOGZqKcW .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYFOGZqKcW .mbr-section-title {
  text-align: left;
}
.cid-sYFRFTX2H0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYFRFTX2H0 .video-wrapper iframe {
  width: 100%;
}
.cid-sYFRFTX2H0 .mbr-section-title,
.cid-sYFRFTX2H0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYFRFTX2H0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYFRFTX2H0 .mbr-section-title {
  text-align: left;
}
.cid-sYAprqbHd0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYAprqbHd0 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYAprqbHd0 .mbr-text {
  text-align: left;
}
.cid-sYJAkbx5EK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYJAkbx5EK .mbr-section-subtitle {
  text-align: left;
}
.cid-sYJAkbx5EK .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYJAkbx5EK .mbr-section-title {
  text-align: left;
}
.cid-sYAptvSBYl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYAptvSBYl .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYAptvSBYl .mbr-text {
  text-align: left;
}
.cid-tL7GhHcSUH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7GhHcSUH .mbr-section-title {
  text-align: left;
}
.cid-sYJF0akVRR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sYJF0akVRR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYJF0akVRR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYJF0akVRR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYArbvMMPB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYArbvMMPB .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYArbvMMPB .mbr-text {
  text-align: left;
}
.cid-tL7GrBHocK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7GrBHocK .mbr-section-title {
  text-align: left;
}
.cid-sYJH9D0fBR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-sYJH9D0fBR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYJH9D0fBR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYJH9D0fBR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYApsaGEKL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYApsaGEKL .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYApsaGEKL .mbr-text {
  text-align: left;
}
.cid-sYJCla0Pdo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYJCla0Pdo .mbr-section-subtitle {
  text-align: left;
}
.cid-sYJCla0Pdo .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYJCla0Pdo .mbr-section-title {
  text-align: left;
}
.cid-sYApsPkajH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYApsPkajH .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYApsPkajH .mbr-text {
  text-align: left;
}
.cid-sYJJ3SBH13 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYJJ3SBH13 .mbr-section-subtitle {
  text-align: left;
}
.cid-sYJJ3SBH13 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYJJ3SBH13 .mbr-section-title {
  text-align: left;
}
.cid-sYA3PzQrDq {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYA3PzQrDq .mbr-section-subtitle {
  text-align: left;
}
.cid-sYA3PzQrDq .mbr-section-title {
  text-align: left;
}
.cid-sYArGlX2F9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYArGlX2F9 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYArGlX2F9 .mbr-text {
  text-align: left;
}
.cid-tL7H5mCejq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7H5mCejq .mbr-section-title {
  text-align: left;
}
.cid-sYEA7j3zde {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYEA7j3zde .video-wrapper iframe {
  width: 100%;
}
.cid-sYEA7j3zde .mbr-section-title,
.cid-sYEA7j3zde .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYEA7j3zde .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYEA7j3zde .mbr-section-title {
  text-align: left;
}
.cid-sYEA3KcKfg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYEA3KcKfg .video-wrapper iframe {
  width: 100%;
}
.cid-sYEA3KcKfg .mbr-section-title,
.cid-sYEA3KcKfg .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYEA3KcKfg .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYEA3KcKfg .mbr-section-title {
  text-align: left;
}
.cid-sYArB4mOsI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYArB4mOsI .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYArB4mOsI .mbr-text {
  text-align: left;
}
.cid-tL7Hkyabzc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7Hkyabzc .mbr-section-title {
  text-align: left;
}
.cid-sYJKfOcpy0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYJKfOcpy0 .video-wrapper iframe {
  width: 100%;
}
.cid-sYJKfOcpy0 .mbr-section-title,
.cid-sYJKfOcpy0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYJKfOcpy0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYJKfOcpy0 .mbr-section-title {
  text-align: left;
}
.cid-sYArH9Caty {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYArH9Caty .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYArH9Caty .mbr-text {
  text-align: left;
}
.cid-sYJPnHZxsE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYJPnHZxsE .mbr-section-subtitle {
  text-align: left;
}
.cid-sYJPIJNbYo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYJPIJNbYo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYJPIJNbYo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYJPIJNbYo .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYJPmo5pgF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dbdbdb;
}
.cid-sYJPmo5pgF .video-wrapper iframe {
  width: 100%;
}
.cid-sYJPmo5pgF .mbr-section-title,
.cid-sYJPmo5pgF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYJPmo5pgF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYJPmo5pgF .mbr-section-title {
  text-align: left;
}
.cid-sYAs7PlVIn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYAs7PlVIn .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYAs7PlVIn .mbr-text {
  text-align: left;
}
.cid-sYJT3Qcjc3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYJT3Qcjc3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYJT3Qcjc3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYJT3Qcjc3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYJTxH1Kqo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYJTxH1Kqo .video-wrapper iframe {
  width: 100%;
}
.cid-sYJTxH1Kqo .mbr-section-title,
.cid-sYJTxH1Kqo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYJTxH1Kqo .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYJTxH1Kqo .mbr-section-title {
  text-align: left;
}
.cid-sYAs9oYl9z {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYAs9oYl9z .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYAs9oYl9z .mbr-text {
  text-align: left;
}
.cid-sYK0CEuuGS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYK0CEuuGS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYK0CEuuGS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYK0CEuuGS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tL7HZ1FZwF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7HZ1FZwF .mbr-section-title {
  text-align: left;
}
.cid-sYK17mpDsq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYK17mpDsq .video-wrapper iframe {
  width: 100%;
}
.cid-sYK17mpDsq .mbr-section-title,
.cid-sYK17mpDsq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYK17mpDsq .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYK17mpDsq .mbr-section-title {
  text-align: left;
}
.cid-sYK3532cfG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYK3532cfG .video-wrapper iframe {
  width: 100%;
}
.cid-sYK3532cfG .mbr-section-title,
.cid-sYK3532cfG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYK3532cfG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYK3532cfG .mbr-section-title {
  text-align: left;
}
.cid-tL7IloLRMO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7IloLRMO .mbr-section-title {
  text-align: left;
}
.cid-sYK3VGihLo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYK3VGihLo .video-wrapper iframe {
  width: 100%;
}
.cid-sYK3VGihLo .mbr-section-title,
.cid-sYK3VGihLo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYK3VGihLo .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYK3VGihLo .mbr-section-title {
  text-align: left;
}
.cid-sYAsqVLQSD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYAsqVLQSD .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYAsqVLQSD .mbr-text {
  text-align: left;
}
.cid-tL7Iy7vif4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tL7Iy7vif4 .mbr-section-title {
  text-align: left;
}
.cid-tL7Iy7vif4 .mbr-text {
  text-align: left;
}
.cid-sYK6FZj4XQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYK6FZj4XQ .video-wrapper iframe {
  width: 100%;
}
.cid-sYK6FZj4XQ .mbr-section-title,
.cid-sYK6FZj4XQ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYK6FZj4XQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYK6FZj4XQ .mbr-section-title {
  text-align: left;
}
.cid-sYK7AwbEob {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYK7AwbEob .video-wrapper iframe {
  width: 100%;
}
.cid-sYK7AwbEob .mbr-section-title,
.cid-sYK7AwbEob .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYK7AwbEob .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYK7AwbEob .mbr-section-title {
  text-align: left;
}
.cid-sYK8Q6jO0O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYK8Q6jO0O .video-wrapper iframe {
  width: 100%;
}
.cid-sYK8Q6jO0O .mbr-section-title,
.cid-sYK8Q6jO0O .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYK8Q6jO0O .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYK8Q6jO0O .mbr-section-title {
  text-align: left;
}
.cid-sYA3VqMzvi {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYA3VqMzvi .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sYA3VqMzvi .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sYA3VqMzvi .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJq2Z8B6j {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJq2Z8B6j .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYQp9qSXGR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQp9qSXGR .mbr-section-subtitle {
  text-align: left;
}
.cid-sYQp9qSXGR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYQp9qSXGR .mbr-section-title {
  text-align: left;
}
.cid-sYQp6reay3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYQp6reay3 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYQp6reay3 .mbr-text {
  text-align: left;
}
.cid-sYQplOuAXK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYQplOuAXK .counter-container ol {
  margin-bottom: 0;
}
.cid-sYQplOuAXK .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sYQp3BgaE6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQp3BgaE6 .mbr-section-subtitle {
  text-align: left;
}
.cid-sYQp3BgaE6 .mbr-section-title {
  text-align: left;
}
.cid-sYTLKSjSqm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYTLKSjSqm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYTLKSjSqm .mbr-text {
  text-align: left;
}
.cid-tLhsUfUO6H {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQpjgmYJG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYQpjgmYJG .video-wrapper iframe {
  width: 100%;
}
.cid-sYQpjgmYJG .mbr-section-title,
.cid-sYQpjgmYJG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYQpjgmYJG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYQpjgmYJG .mbr-section-title {
  text-align: left;
}
.cid-sYTNe4dsNs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYTNe4dsNs .video-wrapper iframe {
  width: 100%;
}
.cid-sYTNe4dsNs .mbr-section-title,
.cid-sYTNe4dsNs .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYTNe4dsNs .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYTNe4dsNs .mbr-section-title {
  text-align: left;
}
.cid-sYTLMF8jqw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYTLMF8jqw .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYTLMF8jqw .mbr-text {
  text-align: left;
}
.cid-tLhpDcNtif {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQpk83MaN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYQpk83MaN .video-wrapper iframe {
  width: 100%;
}
.cid-sYQpk83MaN .mbr-section-title,
.cid-sYQpk83MaN .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYQpk83MaN .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYQpk83MaN .mbr-section-title {
  text-align: left;
}
.cid-sYUz5b4k62 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYUz5b4k62 .video-wrapper iframe {
  width: 100%;
}
.cid-sYUz5b4k62 .mbr-section-title,
.cid-sYUz5b4k62 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYUz5b4k62 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYUz5b4k62 .mbr-section-title {
  text-align: left;
}
.cid-tLhpEsumlj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYTLNOGc6h {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYTLNOGc6h .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYTLNOGc6h .mbr-text {
  text-align: left;
}
.cid-tLhpGenrGj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQq4UWKcF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYQq4UWKcF .video-wrapper iframe {
  width: 100%;
}
.cid-sYQq4UWKcF .mbr-section-title,
.cid-sYQq4UWKcF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYQq4UWKcF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYQq4UWKcF .mbr-section-title {
  text-align: left;
}
.cid-sYUAqTePlY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYUAqTePlY .video-wrapper iframe {
  width: 100%;
}
.cid-sYUAqTePlY .mbr-section-title,
.cid-sYUAqTePlY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYUAqTePlY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYUAqTePlY .mbr-section-title {
  text-align: left;
}
.cid-sYUArUKm8a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYUArUKm8a .video-wrapper iframe {
  width: 100%;
}
.cid-sYUArUKm8a .mbr-section-title,
.cid-sYUArUKm8a .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYUArUKm8a .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYUArUKm8a .mbr-section-title {
  text-align: left;
}
.cid-sYUAyIoOMg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYUAyIoOMg .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYUAyIoOMg .mbr-text {
  text-align: left;
}
.cid-sYUB1xsHyH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYUB1xsHyH .video-wrapper iframe {
  width: 100%;
}
.cid-sYUB1xsHyH .mbr-section-title,
.cid-sYUB1xsHyH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYUB1xsHyH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYUB1xsHyH .mbr-section-title {
  text-align: left;
}
.cid-sYUB2Q5P9T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYUB2Q5P9T .video-wrapper iframe {
  width: 100%;
}
.cid-sYUB2Q5P9T .mbr-section-title,
.cid-sYUB2Q5P9T .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYUB2Q5P9T .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYUB2Q5P9T .mbr-section-title {
  text-align: left;
}
.cid-sYTT6FToOp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYTT6FToOp .mbr-section-subtitle {
  text-align: left;
}
.cid-sYTT6FToOp .mbr-section-title {
  text-align: left;
}
.cid-tGbdpF753B {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYZ39GdCCE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYZ39GdCCE .video-wrapper iframe {
  width: 100%;
}
.cid-sYZ39GdCCE .mbr-section-title,
.cid-sYZ39GdCCE .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYZ39GdCCE .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYZ39GdCCE .mbr-section-title {
  text-align: left;
}
.cid-tLhrXud9CW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYZaPW3CYH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYZaPW3CYH .video-wrapper iframe {
  width: 100%;
}
.cid-sYZaPW3CYH .mbr-section-title,
.cid-sYZaPW3CYH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYZaPW3CYH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYZaPW3CYH .mbr-section-title {
  text-align: left;
}
.cid-sYQp4wDhme {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQp4wDhme .mbr-section-subtitle {
  text-align: left;
}
.cid-sYQp4wDhme .mbr-section-title {
  text-align: left;
}
.cid-sYQqfHtqdQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQqfHtqdQ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sYQqfHtqdQ .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sYQqfHtqdQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sYQqfHtqdQ .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sYQqfHtqdQ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sYQqfHtqdQ .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sYQqfHtqdQ .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sYQqfHtqdQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sYQqfHtqdQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sYQqfHtqdQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sYZmjIw5GA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYZmjIw5GA .video-wrapper iframe {
  width: 100%;
}
.cid-sYZmjIw5GA .mbr-section-title,
.cid-sYZmjIw5GA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYZmjIw5GA .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYZmjIw5GA .mbr-section-title {
  text-align: left;
}
.cid-tmtTguGcBp {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmtTguGcBp .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tmtTguGcBp .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tmtTguGcBp .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJqwZ5Myt {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJqwZ5Myt .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYOuWdJ6YR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYOuWdJ6YR .mbr-section-subtitle {
  text-align: left;
}
.cid-sYOuWdJ6YR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYOuWdJ6YR .mbr-section-title {
  text-align: left;
}
.cid-sYOF7PHyTX {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYOF7PHyTX .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYOF7PHyTX .mbr-text {
  text-align: left;
}
.cid-sYOF8XYqJJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYOF8XYqJJ .counter-container ol {
  margin-bottom: 0;
}
.cid-sYOF8XYqJJ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sYOuUolT2n {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYOuUolT2n .mbr-section-subtitle {
  text-align: left;
}
.cid-sYOuUolT2n .mbr-section-title {
  text-align: left;
}
.cid-sYOIDynbgY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYOIDynbgY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYOIDynbgY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYOIDynbgY .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYOv88em41 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYOv88em41 .mbr-section-subtitle {
  text-align: left;
}
.cid-sYOv88em41 .mbr-section-title {
  text-align: left;
}
.cid-sYOHvirYab {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYOHvirYab .video-wrapper iframe {
  width: 100%;
}
.cid-sYOHvirYab .mbr-section-title,
.cid-sYOHvirYab .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYOHvirYab .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYOHvirYab .mbr-section-title {
  text-align: left;
}
.cid-sYOHI6H2ts {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYOHI6H2ts .video-wrapper iframe {
  width: 100%;
}
.cid-sYOHI6H2ts .mbr-section-title,
.cid-sYOHI6H2ts .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYOHI6H2ts .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYOHI6H2ts .mbr-section-title {
  text-align: left;
}
.cid-sYONOaIZmW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYONOaIZmW .mbr-section-subtitle {
  text-align: left;
}
.cid-sYONOaIZmW .mbr-section-title {
  text-align: left;
}
.cid-sYORwE3Ma6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYORwE3Ma6 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sYORwE3Ma6 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sYORwE3Ma6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sYORwE3Ma6 .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-sYORwE3Ma6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sYORwE3Ma6 .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-sYORwE3Ma6 .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-sYORwE3Ma6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sYORwE3Ma6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sYORwE3Ma6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sYOPTsYEYJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sYOPTsYEYJ .video-wrapper iframe {
  width: 100%;
}
.cid-sYOPTsYEYJ .mbr-section-title,
.cid-sYOPTsYEYJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYOPTsYEYJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYOPTsYEYJ .mbr-section-title {
  text-align: left;
}
.cid-tmohK0l1Br {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmohK0l1Br .mbr-section-subtitle {
  text-align: left;
}
.cid-tmohK0l1Br .mbr-section-title {
  text-align: left;
}
.cid-sYOMT3t2Ut {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYOMT3t2Ut .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sYOMT3t2Ut .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sYOMT3t2Ut .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJqjdlMFE {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJqjdlMFE .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0s12l6A9y {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0s12l6A9y .mbr-section-subtitle {
  text-align: left;
}
.cid-t0s12l6A9y .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t0s12l6A9y .mbr-section-title {
  text-align: left;
}
.cid-t0s1K1fThE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t0s1K1fThE .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t0s1K1fThE .mbr-text {
  text-align: left;
}
.cid-t0s10CAzu4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t0s10CAzu4 .counter-container ol {
  margin-bottom: 0;
}
.cid-t0s10CAzu4 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t0s14UkxJQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0s14UkxJQ .mbr-section-subtitle {
  text-align: left;
}
.cid-t0s14UkxJQ .mbr-section-title {
  text-align: left;
}
.cid-t0s5DZEoWh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0s5DZEoWh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0s5DZEoWh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0s5DZEoWh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLibifty71 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0IVHT27Ez {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0IVHT27Ez .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0IVHT27Ez img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0IVHT27Ez .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0IYw6Smni {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0IYw6Smni .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0IYw6Smni img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0IYw6Smni .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0s4JzjAQz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0s4JzjAQz .video-wrapper iframe {
  width: 100%;
}
.cid-t0s4JzjAQz .mbr-section-title,
.cid-t0s4JzjAQz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0s4JzjAQz .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0s4JzjAQz .mbr-section-title {
  text-align: left;
}
.cid-t0Nr8g68t0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0Nr8g68t0 .video-wrapper iframe {
  width: 100%;
}
.cid-t0Nr8g68t0 .mbr-section-title,
.cid-t0Nr8g68t0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0Nr8g68t0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0Nr8g68t0 .mbr-section-title {
  text-align: left;
}
.cid-t0s5qfYEAF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0s5qfYEAF .video-wrapper iframe {
  width: 100%;
}
.cid-t0s5qfYEAF .mbr-section-title,
.cid-t0s5qfYEAF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0s5qfYEAF .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0s5qfYEAF .mbr-section-title {
  text-align: left;
}
.cid-t0s3xsRbKr {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0s3xsRbKr .mbr-section-subtitle {
  text-align: left;
}
.cid-t0s3xsRbKr .mbr-section-title {
  text-align: left;
}
.cid-t0O7k0Rbbz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0O7k0Rbbz .video-wrapper iframe {
  width: 100%;
}
.cid-t0O7k0Rbbz .mbr-section-title,
.cid-t0O7k0Rbbz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0O7k0Rbbz .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0O7k0Rbbz .mbr-section-title {
  text-align: left;
}
.cid-t0NonrMuek {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0NonrMuek .video-wrapper iframe {
  width: 100%;
}
.cid-t0NonrMuek .mbr-section-title,
.cid-t0NonrMuek .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0NonrMuek .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0NonrMuek .mbr-section-title {
  text-align: left;
}
.cid-tmx28ec62u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmx28ec62u .mbr-section-subtitle {
  text-align: left;
}
.cid-tmx28ec62u .mbr-section-title {
  text-align: left;
}
.cid-t0MGBTJATv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0MGBTJATv .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t0MGBTJATv .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-t0MGBTJATv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t0MGBTJATv .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 #bbbbbb;
  transition: all 0.3s;
}
.cid-t0MGBTJATv .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #bbbbbb;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-t0MGBTJATv .social-row .soc-item:hover {
  background-color: #bbbbbb;
}
.cid-t0MGBTJATv .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-t0MGBTJATv .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t0MGBTJATv .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0MGBTJATv .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t0MJXI03Ed {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0MJXI03Ed .mbr-section-subtitle {
  text-align: left;
}
.cid-t0NArA1vlO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0NArA1vlO .video-wrapper iframe {
  width: 100%;
}
.cid-t0NArA1vlO .mbr-section-title,
.cid-t0NArA1vlO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0NArA1vlO .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0NArA1vlO .mbr-section-title {
  text-align: left;
}
.cid-t0OdoEas02 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0OdoEas02 .video-wrapper iframe {
  width: 100%;
}
.cid-t0OdoEas02 .mbr-section-title,
.cid-t0OdoEas02 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0OdoEas02 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0OdoEas02 .mbr-section-title {
  text-align: left;
}
.cid-tmx2xCV00I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmx2xCV00I .mbr-section-subtitle {
  text-align: left;
}
.cid-tmx2xCV00I .mbr-section-title {
  text-align: left;
}
.cid-t0s3y3Ggmw {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0s3y3Ggmw .mbr-section-subtitle {
  text-align: left;
}
.cid-t0s3y3Ggmw .mbr-section-title {
  text-align: left;
}
.cid-tmx2OfmWTm {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmx2OfmWTm .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tmx2OfmWTm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tmx2OfmWTm .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJxv7Fbbz {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJxv7Fbbz .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t05lsEUVUj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t05lsEUVUj .mbr-section-subtitle {
  text-align: left;
}
.cid-t05lsEUVUj .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t05lsEUVUj .mbr-section-title {
  text-align: left;
}
.cid-t05lsFrhua {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t05lsFrhua .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t05lsFrhua .mbr-text {
  text-align: left;
}
.cid-t9Fa93jyyz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t9Fa93jyyz .counter-container ol {
  margin-bottom: 0;
}
.cid-t9Fa93jyyz .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t9F65goS5V {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9F65goS5V .mbr-section-subtitle {
  text-align: left;
}
.cid-t9F65goS5V .mbr-section-title {
  text-align: left;
}
.cid-t9F98U0N11 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9F98U0N11 .mbr-section-subtitle {
  text-align: left;
}
.cid-t9F98U0N11 .mbr-section-title {
  text-align: left;
}
.cid-t05lsFJ00b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t05lsFJ00b .mbr-section-subtitle {
  text-align: left;
}
.cid-t05lsFJ00b .mbr-section-title {
  text-align: left;
}
.cid-tvJJsoliwd {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJJsoliwd .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmodEyddC9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8c2c2;
}
.cid-tmodEyddC9 .mbr-section-subtitle {
  text-align: left;
}
.cid-tmodEyddC9 .mbr-section-title {
  text-align: left;
}
.cid-t0rpL2gtJ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t0rpL2gtJ5 .counter-container ol {
  margin-bottom: 0;
}
.cid-t0rpL2gtJ5 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tyX0blFHID {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyX0blFHID .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rquRIUzY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rquRIUzY .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rquRIUzY .mbr-section-title {
  text-align: left;
}
.cid-t0rqE3Q4is {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rqE3Q4is .video-wrapper iframe {
  width: 100%;
}
.cid-t0rqE3Q4is .mbr-section-title,
.cid-t0rqE3Q4is .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rqE3Q4is .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rqE3Q4is .mbr-section-title {
  text-align: left;
}
.cid-t0rqNac4ku {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rqNac4ku .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rqWibvTZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rqWibvTZ .video-wrapper iframe {
  width: 100%;
}
.cid-t0rqWibvTZ .mbr-section-title,
.cid-t0rqWibvTZ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rqWibvTZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rqWibvTZ .mbr-section-title {
  text-align: left;
}
.cid-t0rrC7BLFT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rrC7BLFT .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rrv7II96 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t0rrv7II96 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t0rrv7II96 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t0rrv7II96 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rs3rdlRA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rs3rdlRA .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rsgaQRGv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rsgaQRGv .video-wrapper iframe {
  width: 100%;
}
.cid-t0rsgaQRGv .mbr-section-title,
.cid-t0rsgaQRGv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rsgaQRGv .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rsgaQRGv .mbr-section-title {
  text-align: left;
}
.cid-t0rso6t7vh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rso6t7vh .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rsu3ww9q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rsu3ww9q .video-wrapper iframe {
  width: 100%;
}
.cid-t0rsu3ww9q .mbr-section-title,
.cid-t0rsu3ww9q .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rsu3ww9q .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rsu3ww9q .mbr-section-title {
  text-align: left;
}
.cid-t0ruTIGixX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0ruTIGixX .mbr-section-subtitle {
  text-align: left;
}
.cid-t0ruTIGixX .mbr-section-title {
  text-align: left;
}
.cid-t0rYqscmNv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rYqscmNv .video-wrapper iframe {
  width: 100%;
}
.cid-t0rYqscmNv .mbr-section-title,
.cid-t0rYqscmNv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rYqscmNv .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rYqscmNv .mbr-section-title {
  text-align: left;
}
.cid-t0rYfyLGtb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rYfyLGtb .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rucVHSZO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rucVHSZO .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rucVHSZO .mbr-section-title {
  text-align: left;
}
.cid-t0rupVCdJK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rupVCdJK .video-wrapper iframe {
  width: 100%;
}
.cid-t0rupVCdJK .mbr-section-title,
.cid-t0rupVCdJK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rupVCdJK .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rupVCdJK .mbr-section-title {
  text-align: left;
}
.cid-t0ruqxc7d6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0ruqxc7d6 .video-wrapper iframe {
  width: 100%;
}
.cid-t0ruqxc7d6 .mbr-section-title,
.cid-t0ruqxc7d6 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0ruqxc7d6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0ruqxc7d6 .mbr-section-title {
  text-align: left;
}
.cid-t0rtvp17pT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0rtvp17pT .mbr-section-subtitle {
  text-align: left;
}
.cid-t0rtvp17pT .mbr-section-title {
  text-align: left;
}
.cid-t0rtClFszr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t0rtClFszr .video-wrapper iframe {
  width: 100%;
}
.cid-t0rtClFszr .mbr-section-title,
.cid-t0rtClFszr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t0rtClFszr .text-wrapper {
    padding: 2rem;
  }
}
.cid-t0rtClFszr .mbr-section-title {
  text-align: left;
}
.cid-tvJxzcGpev {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJxzcGpev .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0T1Rk735f {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0T1Rk735f .mbr-section-subtitle {
  text-align: left;
}
.cid-t0T1Rk735f .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t0T1Rk735f .mbr-section-title {
  text-align: left;
}
.cid-t0T1Rl4KHX {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t0T1Rl4KHX .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t0T1Rl4KHX .mbr-text {
  text-align: left;
}
.cid-t0T1RloiXf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t0T1RloiXf .counter-container ol {
  margin-bottom: 0;
}
.cid-t0T1RloiXf .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t0T1RlYu0A {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t0T1RlYu0A .mbr-section-subtitle {
  text-align: left;
}
.cid-t0T1RlYu0A .mbr-section-title {
  text-align: left;
}
.cid-t3wVrmx2SR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3wVrmx2SR blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3wVH6R2u4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3wVH6R2u4 .mbr-section-subtitle {
  text-align: left;
}
.cid-t3wVH6R2u4 .mbr-section-title {
  text-align: left;
}
.cid-t3wXAHZger {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3wXAHZger blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3wZtnkRYG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3wZtnkRYG .mbr-section-subtitle {
  text-align: left;
}
.cid-t3wZtnkRYG .mbr-section-title {
  text-align: left;
}
.cid-t1121q0gVs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1121q0gVs .mbr-section-subtitle {
  text-align: left;
}
.cid-t1121q0gVs .mbr-section-title {
  text-align: left;
}
.cid-t3yucl2ZqO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3yucl2ZqO .video-wrapper iframe {
  width: 100%;
}
.cid-t3yucl2ZqO .mbr-section-title,
.cid-t3yucl2ZqO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3yucl2ZqO .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3yucl2ZqO .mbr-section-title {
  text-align: left;
}
.cid-t3yud5sfFE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3yud5sfFE .video-wrapper iframe {
  width: 100%;
}
.cid-t3yud5sfFE .mbr-section-title,
.cid-t3yud5sfFE .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3yud5sfFE .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3yud5sfFE .mbr-section-title {
  text-align: left;
}
.cid-t11220FCdj {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t11220FCdj .mbr-section-subtitle {
  text-align: left;
}
.cid-t11220FCdj .mbr-section-title {
  text-align: left;
}
.cid-t3DpuuZdUy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpuuZdUy .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpuuZdUy .mbr-text {
  text-align: left;
}
.cid-tLj6pE39fj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3E5UYtOaW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3E5UYtOaW .video-wrapper iframe {
  width: 100%;
}
.cid-t3E5UYtOaW .mbr-section-title,
.cid-t3E5UYtOaW .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3E5UYtOaW .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3E5UYtOaW .mbr-section-title {
  text-align: left;
}
.cid-t3Dpv8aKl3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3Dpv8aKl3 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3Dpv8aKl3 .mbr-text {
  text-align: left;
}
.cid-t3DUbrO4iP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DUbrO4iP .mbr-section-subtitle {
  text-align: left;
}
.cid-t3DUbrO4iP .mbr-section-title {
  text-align: left;
}
.cid-t3JsCnWrQv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3JsCnWrQv .video-wrapper iframe {
  width: 100%;
}
.cid-t3JsCnWrQv .mbr-section-title,
.cid-t3JsCnWrQv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3JsCnWrQv .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3JsCnWrQv .mbr-section-title {
  text-align: left;
}
.cid-t3DpvTZwcq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpvTZwcq .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpvTZwcq .mbr-text {
  text-align: left;
}
.cid-t3DUd8WGw1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DUd8WGw1 .mbr-section-subtitle {
  text-align: left;
}
.cid-t3DUd8WGw1 .mbr-section-title {
  text-align: left;
}
.cid-t3JF9n1Wwv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3JF9n1Wwv .video-wrapper iframe {
  width: 100%;
}
.cid-t3JF9n1Wwv .mbr-section-title,
.cid-t3JF9n1Wwv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3JF9n1Wwv .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3JF9n1Wwv .mbr-section-title {
  text-align: left;
}
.cid-t3DpwvgVgi {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpwvgVgi .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpwvgVgi .mbr-text {
  text-align: left;
}
.cid-t3DUedbN43 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DUedbN43 .mbr-section-subtitle {
  text-align: left;
}
.cid-t3DUedbN43 .mbr-section-title {
  text-align: left;
}
.cid-t3KRO8VXNH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3KRO8VXNH .video-wrapper iframe {
  width: 100%;
}
.cid-t3KRO8VXNH .mbr-section-title,
.cid-t3KRO8VXNH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3KRO8VXNH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3KRO8VXNH .mbr-section-title {
  text-align: left;
}
.cid-t3DpxcD0w1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpxcD0w1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpxcD0w1 .mbr-text {
  text-align: left;
}
.cid-t3DUeRvSGR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DUeRvSGR .mbr-section-subtitle {
  text-align: left;
}
.cid-t3DUeRvSGR .mbr-section-title {
  text-align: left;
}
.cid-t3ZY0NvUaW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3ZY0NvUaW .video-wrapper iframe {
  width: 100%;
}
.cid-t3ZY0NvUaW .mbr-section-title,
.cid-t3ZY0NvUaW .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3ZY0NvUaW .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3ZY0NvUaW .mbr-section-title {
  text-align: left;
}
.cid-t3DpxHDHv2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpxHDHv2 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpxHDHv2 .mbr-text {
  text-align: left;
}
.cid-t3DUfsFH1Y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DUfsFH1Y .mbr-section-subtitle {
  text-align: left;
}
.cid-t3DUfsFH1Y .mbr-section-title {
  text-align: left;
}
.cid-t4066NkaXV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4066NkaXV .video-wrapper iframe {
  width: 100%;
}
.cid-t4066NkaXV .mbr-section-title,
.cid-t4066NkaXV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4066NkaXV .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4066NkaXV .mbr-section-title {
  text-align: left;
}
.cid-t3DpynzQUG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpynzQUG .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpynzQUG .mbr-text {
  text-align: left;
}
.cid-t3DUg2zKwL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DUg2zKwL .mbr-section-subtitle {
  text-align: left;
}
.cid-t3DUg2zKwL .mbr-section-title {
  text-align: left;
}
.cid-t42FevAJOU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t42FevAJOU .video-wrapper iframe {
  width: 100%;
}
.cid-t42FevAJOU .mbr-section-title,
.cid-t42FevAJOU .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t42FevAJOU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t42FevAJOU .mbr-section-title {
  text-align: left;
}
.cid-t3DpBcNmg4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3DpBcNmg4 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t3DpBcNmg4 .mbr-text {
  text-align: left;
}
.cid-tLj6zEWjo7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3Jt8YJDiZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3Jt8YJDiZ .video-wrapper iframe {
  width: 100%;
}
.cid-t3Jt8YJDiZ .mbr-section-title,
.cid-t3Jt8YJDiZ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3Jt8YJDiZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3Jt8YJDiZ .mbr-section-title {
  text-align: left;
}
.cid-t1120NdVm7 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1120NdVm7 .mbr-section-subtitle {
  text-align: left;
}
.cid-t1120NdVm7 .mbr-section-title {
  text-align: left;
}
.cid-t42RVYnU7w {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t42RVYnU7w .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t42RVYnU7w .mbr-text {
  text-align: left;
}
.cid-t45XGHMpsW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t45XGHMpsW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t45XGHMpsW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t45XGHMpsW .text-wrapper {
    padding: 2rem;
  }
}
.cid-t45XGHMpsW .mbr-description {
  text-align: left;
}
.cid-t45U7xqLbA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t45U7xqLbA .video-wrapper iframe {
  width: 100%;
}
.cid-t45U7xqLbA .mbr-section-title,
.cid-t45U7xqLbA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t45U7xqLbA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t45U7xqLbA .mbr-section-title {
  text-align: left;
}
.cid-t3JDr3l46K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t3JDr3l46K .video-wrapper iframe {
  width: 100%;
}
.cid-t3JDr3l46K .mbr-section-title,
.cid-t3JDr3l46K .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3JDr3l46K .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3JDr3l46K .mbr-section-title {
  text-align: left;
}
.cid-t45Bz7fID5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t45Bz7fID5 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t45Bz7fID5 .mbr-text {
  text-align: left;
}
.cid-tLj6YdQ2LI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4602Z3d8y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4602Z3d8y .video-wrapper iframe {
  width: 100%;
}
.cid-t4602Z3d8y .mbr-section-title,
.cid-t4602Z3d8y .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4602Z3d8y .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4602Z3d8y .mbr-section-title {
  text-align: left;
}
.cid-t4hMl4AY2F {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hMl4AY2F .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4hMl4AY2F .mbr-text {
  text-align: left;
}
.cid-t4hMRdsQ6r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hMRdsQ6r .mbr-section-subtitle {
  text-align: left;
}
.cid-t4hMRdsQ6r .mbr-section-title {
  text-align: left;
}
.cid-t4hMzwUc8e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4hMzwUc8e .video-wrapper iframe {
  width: 100%;
}
.cid-t4hMzwUc8e .mbr-section-title,
.cid-t4hMzwUc8e .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4hMzwUc8e .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4hMzwUc8e .mbr-section-title {
  text-align: left;
}
.cid-t45BzL2xBj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t45BzL2xBj .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t45BzL2xBj .mbr-text {
  text-align: left;
}
.cid-tLj76JzIPs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t46coX8tZz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t46coX8tZz .video-wrapper iframe {
  width: 100%;
}
.cid-t46coX8tZz .mbr-section-title,
.cid-t46coX8tZz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t46coX8tZz .text-wrapper {
    padding: 2rem;
  }
}
.cid-t46coX8tZz .mbr-section-title {
  text-align: left;
}
.cid-t45BASLddM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t45BASLddM .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t45BASLddM .mbr-text {
  text-align: left;
}
.cid-tLj7jE0YAf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t46eEuhAPw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t46eEuhAPw .video-wrapper iframe {
  width: 100%;
}
.cid-t46eEuhAPw .mbr-section-title,
.cid-t46eEuhAPw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t46eEuhAPw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t46eEuhAPw .mbr-section-title {
  text-align: left;
}
.cid-t45BAiuEeG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t45BAiuEeG .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t45BAiuEeG .mbr-text {
  text-align: left;
}
.cid-t46sfOByBC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t46sfOByBC .mbr-section-subtitle {
  text-align: left;
}
.cid-t46sfOByBC .mbr-section-title {
  text-align: left;
}
.cid-t4hFzyZcaB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4hFzyZcaB .video-wrapper iframe {
  width: 100%;
}
.cid-t4hFzyZcaB .mbr-section-title,
.cid-t4hFzyZcaB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4hFzyZcaB .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4hFzyZcaB .mbr-section-title {
  text-align: left;
}
.cid-t4hAv6Yxwj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hAv6Yxwj .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4hAv6Yxwj .mbr-text {
  text-align: left;
}
.cid-t4hAyP2oyx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hAyP2oyx .mbr-section-subtitle {
  text-align: left;
}
.cid-t4hAyP2oyx .mbr-section-title {
  text-align: left;
}
.cid-t46sgrUOQq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t46sgrUOQq .video-wrapper iframe {
  width: 100%;
}
.cid-t46sgrUOQq .mbr-section-title,
.cid-t46sgrUOQq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t46sgrUOQq .text-wrapper {
    padding: 2rem;
  }
}
.cid-t46sgrUOQq .mbr-section-title {
  text-align: left;
}
.cid-t4hHnlkGle {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4hHnlkGle .video-wrapper iframe {
  width: 100%;
}
.cid-t4hHnlkGle .mbr-section-title,
.cid-t4hHnlkGle .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4hHnlkGle .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4hHnlkGle .mbr-section-title {
  text-align: left;
}
.cid-t1XVISklHt {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1XVISklHt .mbr-section-subtitle {
  text-align: left;
}
.cid-t1XVISklHt .mbr-section-title {
  text-align: left;
}
.cid-t4hPCdUryJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hPCdUryJ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4hPCdUryJ .mbr-text {
  text-align: left;
}
.cid-t4hPygho07 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hPygho07 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4hPygho07 .mbr-section-title {
  text-align: left;
}
.cid-t4hSdKprga {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4hSdKprga .video-wrapper iframe {
  width: 100%;
}
.cid-t4hSdKprga .mbr-section-title,
.cid-t4hSdKprga .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4hSdKprga .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4hSdKprga .mbr-section-title {
  text-align: left;
}
.cid-t4hT8LANvg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hT8LANvg .mbr-section-subtitle {
  text-align: left;
}
.cid-t4hT8LANvg .mbr-section-title {
  text-align: left;
}
.cid-t4hWQbVk2N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4hWQbVk2N .video-wrapper iframe {
  width: 100%;
}
.cid-t4hWQbVk2N .mbr-section-title,
.cid-t4hWQbVk2N .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4hWQbVk2N .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4hWQbVk2N .mbr-section-title {
  text-align: left;
}
.cid-t4hXjmoGCK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hXjmoGCK .mbr-section-subtitle {
  text-align: left;
}
.cid-t4hXjmoGCK .mbr-section-title {
  text-align: left;
}
.cid-t4ihSk6a8A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4ihSk6a8A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4ihSk6a8A img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4ihSk6a8A .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4ihSk6a8A .mbr-description {
  text-align: left;
}
.cid-t4iiBq1CI6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4iiBq1CI6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4iiBq1CI6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4iiBq1CI6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iiBq1CI6 .mbr-description {
  text-align: left;
}
.cid-t4imIg17JV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4imIg17JV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4imIg17JV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4imIg17JV .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4imIg17JV .mbr-description {
  text-align: left;
}
.cid-t4iMboE8VD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iMboE8VD .video-wrapper iframe {
  width: 100%;
}
.cid-t4iMboE8VD .mbr-section-title,
.cid-t4iMboE8VD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iMboE8VD .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iMboE8VD .mbr-section-title {
  text-align: left;
}
.cid-t4inBS05CQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4inBS05CQ .mbr-section-subtitle {
  text-align: left;
}
.cid-t4inBS05CQ .mbr-section-title {
  text-align: left;
}
.cid-t4it9j6Tra {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4it9j6Tra .video-wrapper iframe {
  width: 100%;
}
.cid-t4it9j6Tra .mbr-section-title,
.cid-t4it9j6Tra .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4it9j6Tra .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4it9j6Tra .mbr-section-title {
  text-align: left;
}
.cid-t4ixsFwdT0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4ixsFwdT0 .video-wrapper iframe {
  width: 100%;
}
.cid-t4ixsFwdT0 .mbr-section-title,
.cid-t4ixsFwdT0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4ixsFwdT0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4ixsFwdT0 .mbr-section-title {
  text-align: left;
}
.cid-t4iDbiRbCq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4iDbiRbCq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4iDbiRbCq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4iDbiRbCq .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iDbiRbCq .mbr-description {
  text-align: left;
}
.cid-t4itagSFEP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4itagSFEP .mbr-section-subtitle {
  text-align: left;
}
.cid-t4itagSFEP .mbr-section-title {
  text-align: left;
}
.cid-t4iGdy5Ay4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4iGdy5Ay4 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4iGdy5Ay4 .mbr-section-title {
  text-align: left;
}
.cid-t4iFSrDwNb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iFSrDwNb .video-wrapper iframe {
  width: 100%;
}
.cid-t4iFSrDwNb .mbr-section-title,
.cid-t4iFSrDwNb .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iFSrDwNb .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iFSrDwNb .mbr-section-title {
  text-align: left;
}
.cid-tGbrwVAeFp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4iH2xbhfx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iH2xbhfx .video-wrapper iframe {
  width: 100%;
}
.cid-t4iH2xbhfx .mbr-section-title,
.cid-t4iH2xbhfx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iH2xbhfx .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iH2xbhfx .mbr-section-title {
  text-align: left;
}
.cid-t4iIlAUsqU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iIlAUsqU .video-wrapper iframe {
  width: 100%;
}
.cid-t4iIlAUsqU .mbr-section-title,
.cid-t4iIlAUsqU .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iIlAUsqU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iIlAUsqU .mbr-section-title {
  text-align: left;
}
.cid-t4jjukba0c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4jjukba0c .video-wrapper iframe {
  width: 100%;
}
.cid-t4jjukba0c .mbr-section-title,
.cid-t4jjukba0c .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4jjukba0c .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4jjukba0c .mbr-section-title {
  text-align: left;
}
.cid-t4qFqBEwmY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4qFqBEwmY .video-wrapper iframe {
  width: 100%;
}
.cid-t4qFqBEwmY .mbr-section-title,
.cid-t4qFqBEwmY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4qFqBEwmY .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4qFqBEwmY .mbr-section-title {
  text-align: left;
}
.cid-t4iOApcQ1q {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4iOApcQ1q .mbr-section-subtitle {
  text-align: left;
}
.cid-t4iOApcQ1q .mbr-section-title {
  text-align: left;
}
.cid-t4iV5lSl83 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iV5lSl83 .video-wrapper iframe {
  width: 100%;
}
.cid-t4iV5lSl83 .mbr-section-title,
.cid-t4iV5lSl83 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iV5lSl83 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iV5lSl83 .mbr-section-title {
  text-align: left;
}
.cid-t4iR4Hsz9t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iR4Hsz9t .video-wrapper iframe {
  width: 100%;
}
.cid-t4iR4Hsz9t .mbr-section-title,
.cid-t4iR4Hsz9t .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iR4Hsz9t .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iR4Hsz9t .mbr-section-title {
  text-align: left;
}
.cid-t4iSlo8vMz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4iSlo8vMz .video-wrapper iframe {
  width: 100%;
}
.cid-t4iSlo8vMz .mbr-section-title,
.cid-t4iSlo8vMz .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4iSlo8vMz .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4iSlo8vMz .mbr-section-title {
  text-align: left;
}
.cid-t4pR9qmJ2u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4pR9qmJ2u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4pR9qmJ2u img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4pR9qmJ2u .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4pR9qmJ2u .mbr-description {
  text-align: left;
}
.cid-t4pQCdJuJr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4pQCdJuJr .video-wrapper iframe {
  width: 100%;
}
.cid-t4pQCdJuJr .mbr-section-title,
.cid-t4pQCdJuJr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4pQCdJuJr .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4pQCdJuJr .mbr-section-title {
  text-align: left;
}
.cid-t4iODwrN6y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4iODwrN6y .mbr-section-subtitle {
  text-align: left;
}
.cid-t4iODwrN6y .mbr-section-title {
  text-align: left;
}
.cid-t4j0VHDRXG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4j0VHDRXG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4j0VHDRXG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4j0VHDRXG .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4j0VHDRXG .mbr-description {
  text-align: left;
}
.cid-t4j0Xvp1XA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4j0Xvp1XA .mbr-section-subtitle {
  text-align: left;
}
.cid-t4j0Xvp1XA .mbr-section-title {
  text-align: left;
}
.cid-t4jfDPw5Bn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4jfDPw5Bn .video-wrapper iframe {
  width: 100%;
}
.cid-t4jfDPw5Bn .mbr-section-title,
.cid-t4jfDPw5Bn .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4jfDPw5Bn .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4jfDPw5Bn .mbr-section-title {
  text-align: left;
}
.cid-tGbrPZ1YwV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4nI10kCdB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4nI10kCdB .video-wrapper iframe {
  width: 100%;
}
.cid-t4nI10kCdB .mbr-section-title,
.cid-t4nI10kCdB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4nI10kCdB .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4nI10kCdB .mbr-section-title {
  text-align: left;
}
.cid-t4nIGvzKs4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4nIGvzKs4 .video-wrapper iframe {
  width: 100%;
}
.cid-t4nIGvzKs4 .mbr-section-title,
.cid-t4nIGvzKs4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4nIGvzKs4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4nIGvzKs4 .mbr-section-title {
  text-align: left;
}
.cid-tLj8kLf4iv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4khg1Ec26 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4khg1Ec26 .video-wrapper iframe {
  width: 100%;
}
.cid-t4khg1Ec26 .mbr-section-title,
.cid-t4khg1Ec26 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4khg1Ec26 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4khg1Ec26 .mbr-section-title {
  text-align: left;
}
.cid-t4jmslsQEj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4jmslsQEj .video-wrapper iframe {
  width: 100%;
}
.cid-t4jmslsQEj .mbr-section-title,
.cid-t4jmslsQEj .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4jmslsQEj .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4jmslsQEj .mbr-section-title {
  text-align: left;
}
.cid-tLj8v7yHpC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4kotFWwyi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4kotFWwyi .video-wrapper iframe {
  width: 100%;
}
.cid-t4kotFWwyi .mbr-section-title,
.cid-t4kotFWwyi .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4kotFWwyi .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4kotFWwyi .mbr-section-title {
  text-align: left;
}
.cid-t4hYrFtwOu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4hYrFtwOu .mbr-section-subtitle {
  text-align: left;
}
.cid-t4hYrFtwOu .mbr-section-title {
  text-align: left;
}
.cid-t4nzGYxdXG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4nzGYxdXG .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t4nzGYxdXG .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-t4nzGYxdXG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t4nzGYxdXG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t4nzGYxdXG .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-t4nzGYxdXG .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t4nzGYxdXG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t4nzGYxdXG .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t4nzGYxdXG .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t4nzGYxdXG .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t4nj55zP69 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4nj55zP69 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4nj55zP69 .mbr-section-title {
  text-align: left;
}
.cid-t4nnMcQRPL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4nnMcQRPL .mbr-section-subtitle {
  text-align: left;
}
.cid-t4nnMcQRPL .mbr-section-title {
  text-align: left;
}
.cid-t4noeMDOov {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4noeMDOov .video-wrapper iframe {
  width: 100%;
}
.cid-t4noeMDOov .mbr-section-title,
.cid-t4noeMDOov .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4noeMDOov .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4noeMDOov .mbr-section-title {
  text-align: left;
}
.cid-t4iFxOB7uY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4iFxOB7uY .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4iFxOB7uY .mbr-text {
  text-align: left;
}
.cid-t4iJetiCrg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4iJetiCrg .mbr-section-subtitle {
  text-align: left;
}
.cid-t4iJetiCrg .mbr-section-title {
  text-align: left;
}
.cid-t4o4T9B9h6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4o4T9B9h6 blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t4o59pKhOy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4o59pKhOy blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t4o5a7GNPH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4o5a7GNPH blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t4o5i0cuX3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4o5i0cuX3 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4o5i0cuX3 .mbr-section-title {
  text-align: left;
}
.cid-t4oA4uBroY {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4oA4uBroY .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4oA4uBroY .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4oA4uBroY .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJIT0JHCY {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJIT0JHCY .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4mzi084pf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4mzi084pf img,
.cid-t4mzi084pf .item-img {
  width: 100%;
}
.cid-t4mzi084pf .item:focus,
.cid-t4mzi084pf span:focus {
  outline: none;
}
.cid-t4mzi084pf .item-wrapper {
  position: relative;
}
.cid-t4mzi084pf .slide-content {
  position: relative;
  border-radius: 4px;
  background: #a5bf98;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t4mzi084pf .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t4mzi084pf .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4mzi084pf .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t4mzi084pf .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t4mzi084pf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t4mzi084pf .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-t4mzi084pf .mbr-text,
.cid-t4mzi084pf .mbr-section-btn {
  text-align: left;
}
.cid-t4mzi084pf .item-title {
  text-align: left;
}
.cid-t4mzi084pf .item-subtitle {
  text-align: left;
}
.cid-t4mzi084pf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-t4mzi084pf .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t4mzi084pf .embla__button--next,
.cid-t4mzi084pf .embla__button--prev {
  display: flex;
}
.cid-t4mzi084pf .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t4mzi084pf .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t4mzi084pf .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t4mzi084pf .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t4mzi084pf .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t4mzi084pf .embla__button {
    top: auto;
  }
}
.cid-t4mzi084pf .embla {
  position: relative;
  width: 100%;
}
.cid-t4mzi084pf .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t4mzi084pf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t4mzi084pf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t4mzi084pf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t4mzi084pf .mbr-section-subtitle {
  text-align: left;
}
.cid-t4mzi9aRic {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-t4mzi9aRic .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4mzi9aRic .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-t9QlJjZRdg {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t9QlJjZRdg .carousel-item {
  justify-content: center;
}
.cid-t9QlJjZRdg .carousel-item.active,
.cid-t9QlJjZRdg .carousel-item-next,
.cid-t9QlJjZRdg .carousel-item-prev {
  display: flex;
}
.cid-t9QlJjZRdg .carousel-controls a {
  transition: opacity .5s;
  font-size: 22px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
}
.cid-t9QlJjZRdg .carousel-control-next span {
  padding-left: 5px;
}
.cid-t9QlJjZRdg .carousel-control-prev span {
  padding-right: 5px;
}
.cid-t9QlJjZRdg .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-t9QlJjZRdg .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-t9QlJjZRdg .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-t9QlJjZRdg .user_desk {
  text-align: center;
}
.cid-tv7jRw9UqR {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tv7jRw9UqR .carousel-item {
  justify-content: center;
}
.cid-tv7jRw9UqR .carousel-item.active,
.cid-tv7jRw9UqR .carousel-item-next,
.cid-tv7jRw9UqR .carousel-item-prev {
  display: flex;
}
.cid-tv7jRw9UqR .carousel-controls a {
  transition: opacity .5s;
  font-size: 22px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
}
.cid-tv7jRw9UqR .carousel-control-next span {
  padding-left: 5px;
}
.cid-tv7jRw9UqR .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tv7jRw9UqR .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tv7jRw9UqR .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-tv7jRw9UqR .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tv7jRw9UqR .user_desk {
  text-align: center;
}
.cid-tLzqdd9CwW {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tLzqdd9CwW .carousel-item {
  justify-content: center;
}
.cid-tLzqdd9CwW .carousel-item.active,
.cid-tLzqdd9CwW .carousel-item-next,
.cid-tLzqdd9CwW .carousel-item-prev {
  display: flex;
}
.cid-tLzqdd9CwW .carousel-controls a {
  transition: opacity .5s;
  font-size: 22px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
}
.cid-tLzqdd9CwW .carousel-control-next span {
  padding-left: 5px;
}
.cid-tLzqdd9CwW .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tLzqdd9CwW .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tLzqdd9CwW .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-tLzqdd9CwW .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tLzqdd9CwW .user_desk {
  text-align: center;
}
.cid-tLzqdd9CwW .user_desk DIV {
  text-align: center;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmBuzVhLpP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmBuzVhLpP .mbr-section-subtitle {
  text-align: left;
}
.cid-tmBuzVhLpP .mbr-section-title {
  text-align: left;
}
.cid-t4BvHIXGWf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4BvHIXGWf .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4BvHIXGWf .mbr-text {
  text-align: left;
}
.cid-t4BvHJi598 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4BvHJi598 .counter-container ol {
  margin-bottom: 0;
}
.cid-t4BvHJi598 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4BvHJGxnL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4BvHJGxnL .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4BvHJGxnL .mbr-section-title {
  text-align: left;
}
.cid-t8ZRicGy3I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZRicGy3I blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t8ZRKEtDxA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZRKEtDxA .mbr-section-subtitle {
  text-align: left;
}
.cid-t8ZRKEtDxA .mbr-section-title {
  text-align: left;
}
.cid-t8ZKQNXo8G {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZKQNXo8G .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8ZKQNXo8G .mbr-text {
  text-align: left;
}
.cid-t8ZWQIaTBc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8ZWQIaTBc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8ZWQIaTBc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ZWQIaTBc .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8ZWQIaTBc .mbr-description {
  text-align: left;
}
.cid-t8ZVFMcbop {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8ZVFMcbop .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8ZVFMcbop img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8ZVFMcbop .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8ZVFMcbop .mbr-description {
  text-align: left;
}
.cid-t904FxDwDF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t904FxDwDF .mbr-section-subtitle {
  text-align: left;
}
.cid-t904FxDwDF .mbr-section-title {
  text-align: left;
}
.cid-toX8uDiyst {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-toX8uDiyst .video-wrapper iframe {
  width: 100%;
}
.cid-toX8uDiyst .mbr-section-title,
.cid-toX8uDiyst .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-toX8uDiyst .text-wrapper {
    padding: 2rem;
  }
}
.cid-toX8uDiyst .mbr-section-title {
  text-align: left;
}
.cid-t8ZXET4Qw4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZXET4Qw4 .mbr-section-subtitle {
  text-align: left;
}
.cid-t8ZXET4Qw4 .mbr-section-title {
  text-align: left;
}
.cid-t8ZLuVf4kU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZLuVf4kU .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8ZLuVf4kU .mbr-text {
  text-align: left;
}
.cid-t906NtI9HH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t906NtI9HH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t906NtI9HH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t906NtI9HH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t906NtI9HH .mbr-description {
  text-align: left;
}
.cid-t8ZL6k4BWo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZL6k4BWo .mbr-section-subtitle {
  text-align: left;
}
.cid-t8ZL6k4BWo .mbr-section-title {
  text-align: left;
}
.cid-t8ZO1MlZ6G {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ZO1MlZ6G .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8ZO1MlZ6G .mbr-text {
  text-align: left;
}
.cid-t909EMWFSn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t909EMWFSn .video-wrapper iframe {
  width: 100%;
}
.cid-t909EMWFSn .mbr-section-title,
.cid-t909EMWFSn .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t909EMWFSn .text-wrapper {
    padding: 2rem;
  }
}
.cid-t909EMWFSn .mbr-section-title {
  text-align: left;
}
.cid-tLiVBajN6z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90mdSmHsh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t90mdSmHsh .video-wrapper iframe {
  width: 100%;
}
.cid-t90mdSmHsh .mbr-section-title,
.cid-t90mdSmHsh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t90mdSmHsh .text-wrapper {
    padding: 2rem;
  }
}
.cid-t90mdSmHsh .mbr-section-title {
  text-align: left;
}
.cid-t90ge4HJba {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90ge4HJba .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t90ge4HJba .mbr-text {
  text-align: left;
}
.cid-t90ggo4rHH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90ggo4rHH .mbr-section-subtitle {
  text-align: left;
}
.cid-t90ggo4rHH .mbr-section-title {
  text-align: left;
}
.cid-t90LOb6sNC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t90LOb6sNC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t90LOb6sNC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t90LOb6sNC .text-wrapper {
    padding: 2rem;
  }
}
.cid-t90LOb6sNC .mbr-description {
  text-align: left;
}
.cid-tLiVN5q77y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90LMec0B7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t90LMec0B7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t90LMec0B7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t90LMec0B7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t90LMec0B7 .mbr-description {
  text-align: left;
}
.cid-t90M0ledbn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90M0ledbn .mbr-section-subtitle {
  text-align: left;
}
.cid-t90M0ledbn .mbr-section-title {
  text-align: left;
}
.cid-t90U3BZqLi {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90U3BZqLi .mbr-section-subtitle {
  text-align: left;
}
.cid-t90U3BZqLi .mbr-section-title {
  text-align: left;
}
.cid-t90TInCy8h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t90TInCy8h .video-wrapper iframe {
  width: 100%;
}
.cid-t90TInCy8h .mbr-section-title,
.cid-t90TInCy8h .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t90TInCy8h .text-wrapper {
    padding: 2rem;
  }
}
.cid-t90TInCy8h .mbr-section-title {
  text-align: left;
}
.cid-t90CUEBz0E {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90CUEBz0E .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t90CUEBz0E .mbr-text {
  text-align: left;
}
.cid-tLiW4F0Gef {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9jZJvZUTk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9jZJvZUTk .video-wrapper iframe {
  width: 100%;
}
.cid-t9jZJvZUTk .mbr-section-title,
.cid-t9jZJvZUTk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9jZJvZUTk .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9jZJvZUTk .mbr-section-title {
  text-align: left;
}
.cid-t90CTxwO02 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90CTxwO02 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t90CTxwO02 .mbr-text {
  text-align: left;
}
.cid-t90CEte6Xc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t90CEte6Xc .mbr-section-subtitle {
  text-align: left;
}
.cid-t90CEte6Xc .mbr-section-title {
  text-align: left;
}
.cid-t9L2NvDB25 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9L2NvDB25 .video-wrapper iframe {
  width: 100%;
}
.cid-t9L2NvDB25 .mbr-section-title,
.cid-t9L2NvDB25 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9L2NvDB25 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9L2NvDB25 .mbr-section-title {
  text-align: left;
}
.cid-t9L6jXnob0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9L6jXnob0 .video-wrapper iframe {
  width: 100%;
}
.cid-t9L6jXnob0 .mbr-section-title,
.cid-t9L6jXnob0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9L6jXnob0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9L6jXnob0 .mbr-section-title {
  text-align: left;
}
.cid-t9LaLAERay {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t9LaLAERay .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9LaLAERay img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t9LaLAERay .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9LaLAERay .mbr-description {
  text-align: left;
}
.cid-t9LagsVsde {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9LagsVsde .video-wrapper iframe {
  width: 100%;
}
.cid-t9LagsVsde .mbr-section-title,
.cid-t9LagsVsde .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9LagsVsde .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9LagsVsde .mbr-section-title {
  text-align: left;
}
.cid-t9L8BDLbNb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9L8BDLbNb .video-wrapper iframe {
  width: 100%;
}
.cid-t9L8BDLbNb .mbr-section-title,
.cid-t9L8BDLbNb .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9L8BDLbNb .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9L8BDLbNb .mbr-section-title {
  text-align: left;
}
.cid-t9LhvqDIJv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t9LhvqDIJv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9LhvqDIJv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t9LhvqDIJv .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9LhvqDIJv .mbr-description {
  text-align: left;
}
.cid-t9Lh8ONsOD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9Lh8ONsOD .video-wrapper iframe {
  width: 100%;
}
.cid-t9Lh8ONsOD .mbr-section-title,
.cid-t9Lh8ONsOD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9Lh8ONsOD .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9Lh8ONsOD .mbr-section-title {
  text-align: left;
}
.cid-t9LmE9E0Qh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9LmE9E0Qh .video-wrapper iframe {
  width: 100%;
}
.cid-t9LmE9E0Qh .mbr-section-title,
.cid-t9LmE9E0Qh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9LmE9E0Qh .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9LmE9E0Qh .mbr-section-title {
  text-align: left;
}
.cid-t9NsVpRmki {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9NsVpRmki .video-wrapper iframe {
  width: 100%;
}
.cid-t9NsVpRmki .mbr-section-title,
.cid-t9NsVpRmki .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9NsVpRmki .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9NsVpRmki .mbr-section-title {
  text-align: left;
}
.cid-t9Lo4fSy0U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9Lo4fSy0U .video-wrapper iframe {
  width: 100%;
}
.cid-t9Lo4fSy0U .mbr-section-title,
.cid-t9Lo4fSy0U .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9Lo4fSy0U .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9Lo4fSy0U .mbr-section-title {
  text-align: left;
}
.cid-t9LqS5F4u0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9LqS5F4u0 .video-wrapper iframe {
  width: 100%;
}
.cid-t9LqS5F4u0 .mbr-section-title,
.cid-t9LqS5F4u0 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9LqS5F4u0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9LqS5F4u0 .mbr-section-title {
  text-align: left;
}
.cid-t9LtwI6Je5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t9LtwI6Je5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t9LtwI6Je5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t9LtwI6Je5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9Ly1INjtG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9Ly1INjtG .video-wrapper iframe {
  width: 100%;
}
.cid-t9Ly1INjtG .mbr-section-title,
.cid-t9Ly1INjtG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9Ly1INjtG .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9Ly1INjtG .mbr-section-title {
  text-align: left;
}
.cid-t9Lz8nxxUo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9Lz8nxxUo .video-wrapper iframe {
  width: 100%;
}
.cid-t9Lz8nxxUo .mbr-section-title,
.cid-t9Lz8nxxUo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9Lz8nxxUo .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9Lz8nxxUo .mbr-section-title {
  text-align: left;
}
.cid-t4BvHKwaZ0 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4BvHKwaZ0 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4BvHKwaZ0 .mbr-section-title {
  text-align: left;
}
.cid-t9LYJ6uKqC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9LYJ6uKqC .video-wrapper iframe {
  width: 100%;
}
.cid-t9LYJ6uKqC .mbr-section-title,
.cid-t9LYJ6uKqC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9LYJ6uKqC .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9LYJ6uKqC .mbr-section-title {
  text-align: left;
}
.cid-t9M6TDzfLK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9M6TDzfLK .video-wrapper iframe {
  width: 100%;
}
.cid-t9M6TDzfLK .mbr-section-title,
.cid-t9M6TDzfLK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9M6TDzfLK .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9M6TDzfLK .mbr-section-title {
  text-align: left;
}
.cid-t9L3Jv1fjk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9L3Jv1fjk .video-wrapper iframe {
  width: 100%;
}
.cid-t9L3Jv1fjk .mbr-section-title,
.cid-t9L3Jv1fjk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9L3Jv1fjk .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9L3Jv1fjk .mbr-section-title {
  text-align: left;
}
.cid-t9M88s0X47 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9M88s0X47 .video-wrapper iframe {
  width: 100%;
}
.cid-t9M88s0X47 .mbr-section-title,
.cid-t9M88s0X47 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9M88s0X47 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9M88s0X47 .mbr-section-title {
  text-align: left;
}
.cid-t9M9FeOw9W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t9M9FeOw9W .video-wrapper iframe {
  width: 100%;
}
.cid-t9M9FeOw9W .mbr-section-title,
.cid-t9M9FeOw9W .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9M9FeOw9W .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9M9FeOw9W .mbr-section-title {
  text-align: left;
}
.cid-tmBw3h0Zf9 {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmBw3h0Zf9 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tmBw3h0Zf9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tmBw3h0Zf9 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJJ2E5uhI {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJJ2E5uhI .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmBtXMoR5W {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmBtXMoR5W .mbr-section-subtitle {
  text-align: left;
}
.cid-tmBtXMoR5W .mbr-section-title {
  text-align: left;
}
.cid-t4BHEFngE8 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4BHEFngE8 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4BHEFngE8 .mbr-text {
  text-align: left;
}
.cid-t4BHEFGnbT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4BHEFGnbT .counter-container ol {
  margin-bottom: 0;
}
.cid-t4BHEFGnbT .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4BHEFYSjO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4BHEFYSjO .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4BHEFYSjO .mbr-section-title {
  text-align: left;
}
.cid-t8goScpIzK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8goScpIzK .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8goScpIzK .mbr-text {
  text-align: left;
}
.cid-t8gq9GEv05 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gq9GEv05 .video-wrapper iframe {
  width: 100%;
}
.cid-t8gq9GEv05 .mbr-section-title,
.cid-t8gq9GEv05 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gq9GEv05 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gq9GEv05 .mbr-section-title {
  text-align: left;
}
.cid-toWiB0Lbpm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-toWiB0Lbpm .video-wrapper iframe {
  width: 100%;
}
.cid-toWiB0Lbpm .mbr-section-title,
.cid-toWiB0Lbpm .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-toWiB0Lbpm .text-wrapper {
    padding: 2rem;
  }
}
.cid-toWiB0Lbpm .mbr-section-title {
  text-align: left;
}
.cid-t8gv9pnEWE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gv9pnEWE .video-wrapper iframe {
  width: 100%;
}
.cid-t8gv9pnEWE .mbr-section-title,
.cid-t8gv9pnEWE .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gv9pnEWE .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gv9pnEWE .mbr-section-title {
  text-align: left;
}
.cid-tarbvX0u7O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tarbvX0u7O .video-wrapper iframe {
  width: 100%;
}
.cid-tarbvX0u7O .mbr-section-title,
.cid-tarbvX0u7O .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tarbvX0u7O .text-wrapper {
    padding: 2rem;
  }
}
.cid-tarbvX0u7O .mbr-section-title {
  text-align: left;
}
.cid-t8goSLgB6W {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8goSLgB6W .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8goSLgB6W .mbr-text {
  text-align: left;
}
.cid-t8gC4xUNP7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gC4xUNP7 .video-wrapper iframe {
  width: 100%;
}
.cid-t8gC4xUNP7 .mbr-section-title,
.cid-t8gC4xUNP7 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gC4xUNP7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gC4xUNP7 .mbr-section-title {
  text-align: left;
}
.cid-t8gDwlQa2Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gDwlQa2Y .video-wrapper iframe {
  width: 100%;
}
.cid-t8gDwlQa2Y .mbr-section-title,
.cid-t8gDwlQa2Y .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gDwlQa2Y .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gDwlQa2Y .mbr-section-title {
  text-align: left;
}
.cid-taD7KgaOFU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taD7KgaOFU .video-wrapper iframe {
  width: 100%;
}
.cid-taD7KgaOFU .mbr-section-title,
.cid-taD7KgaOFU .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taD7KgaOFU .text-wrapper {
    padding: 2rem;
  }
}
.cid-taD7KgaOFU .mbr-section-title {
  text-align: left;
}
.cid-t8gwlFzbpA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gwlFzbpA .video-wrapper iframe {
  width: 100%;
}
.cid-t8gwlFzbpA .mbr-section-title,
.cid-t8gwlFzbpA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gwlFzbpA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gwlFzbpA .mbr-section-title {
  text-align: left;
}
.cid-t8gzgzQuDs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gzgzQuDs .video-wrapper iframe {
  width: 100%;
}
.cid-t8gzgzQuDs .mbr-section-title,
.cid-t8gzgzQuDs .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gzgzQuDs .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gzgzQuDs .mbr-section-title {
  text-align: left;
}
.cid-t8gBv1vREw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8gBv1vREw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8gBv1vREw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8gBv1vREw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gBv1vREw .mbr-description {
  text-align: left;
}
.cid-t8gBt3Ma5h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8gBt3Ma5h .video-wrapper iframe {
  width: 100%;
}
.cid-t8gBt3Ma5h .mbr-section-title,
.cid-t8gBt3Ma5h .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8gBt3Ma5h .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8gBt3Ma5h .mbr-section-title {
  text-align: left;
}
.cid-t8goTcKYSK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8goTcKYSK .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8goTcKYSK .mbr-text {
  text-align: left;
}
.cid-tLiSJNGzoo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGbpmcGs7m {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8i404eWmc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8i404eWmc .mbr-section-subtitle {
  text-align: left;
}
.cid-t8i404eWmc .mbr-section-title {
  text-align: left;
}
.cid-t8ibzZ2yBA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8ibzZ2yBA .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-t8ibzZ2yBA .mbr-section-title {
  text-align: left;
}
.cid-t8hQiMEvZY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8hQiMEvZY .video-wrapper iframe {
  width: 100%;
}
.cid-t8hQiMEvZY .mbr-section-title,
.cid-t8hQiMEvZY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8hQiMEvZY .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8hQiMEvZY .mbr-section-title {
  text-align: left;
}
.cid-t4BHEGh38R {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4BHEGh38R .mbr-section-subtitle {
  text-align: left;
}
.cid-t4BHEGh38R .mbr-section-title {
  text-align: left;
}
.cid-t8moz5lWFC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8moz5lWFC .video-wrapper iframe {
  width: 100%;
}
.cid-t8moz5lWFC .mbr-section-title,
.cid-t8moz5lWFC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8moz5lWFC .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8moz5lWFC .mbr-section-title {
  text-align: left;
}
.cid-t8mqgqYVF5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8mqgqYVF5 .video-wrapper iframe {
  width: 100%;
}
.cid-t8mqgqYVF5 .mbr-section-title,
.cid-t8mqgqYVF5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8mqgqYVF5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8mqgqYVF5 .mbr-section-title {
  text-align: left;
}
.cid-t8NvUJ1ViU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t8NvUJ1ViU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8NvUJ1ViU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8NvUJ1ViU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8tV1ZJ9KC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8tV1ZJ9KC .video-wrapper iframe {
  width: 100%;
}
.cid-t8tV1ZJ9KC .mbr-section-title,
.cid-t8tV1ZJ9KC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8tV1ZJ9KC .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8tV1ZJ9KC .mbr-section-title {
  text-align: left;
}
.cid-t8tWkexjFp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8tWkexjFp .video-wrapper iframe {
  width: 100%;
}
.cid-t8tWkexjFp .mbr-section-title,
.cid-t8tWkexjFp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8tWkexjFp .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8tWkexjFp .mbr-section-title {
  text-align: left;
}
.cid-t8tXaMcm3F {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t8tXaMcm3F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8tXaMcm3F img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8tXaMcm3F .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8tXaMcm3F .mbr-description {
  text-align: left;
}
.cid-t8u3l3Dl0M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8u3l3Dl0M .video-wrapper iframe {
  width: 100%;
}
.cid-t8u3l3Dl0M .mbr-section-title,
.cid-t8u3l3Dl0M .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8u3l3Dl0M .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8u3l3Dl0M .mbr-section-title {
  text-align: left;
}
.cid-t8u3lMtXsU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8u3lMtXsU .video-wrapper iframe {
  width: 100%;
}
.cid-t8u3lMtXsU .mbr-section-title,
.cid-t8u3lMtXsU .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8u3lMtXsU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8u3lMtXsU .mbr-section-title {
  text-align: left;
}
.cid-tGbpNonqjy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8u8A126yJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8u8A126yJ .video-wrapper iframe {
  width: 100%;
}
.cid-t8u8A126yJ .mbr-section-title,
.cid-t8u8A126yJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8u8A126yJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8u8A126yJ .mbr-section-title {
  text-align: left;
}
.cid-t8uea8C0mk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8uea8C0mk .video-wrapper iframe {
  width: 100%;
}
.cid-t8uea8C0mk .mbr-section-title,
.cid-t8uea8C0mk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8uea8C0mk .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8uea8C0mk .mbr-section-title {
  text-align: left;
}
.cid-t4BHEH0tct {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4BHEH0tct .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4BHEH0tct .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4BHEH0tct .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJIZtdCgI {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJIZtdCgI .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HxfPmrey {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxfPmrey .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxfPmrey .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HxfPmrey .mbr-section-title {
  text-align: left;
}
.cid-t4HxfQghsq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HxfQghsq .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HxfQghsq .mbr-text {
  text-align: left;
}
.cid-t4HxfQysgb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HxfQysgb .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HxfQysgb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HxfQS3wz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxfQS3wz .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HxfQS3wz .mbr-section-title {
  text-align: left;
}
.cid-t72GekKyn2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t72GekKyn2 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t72GekKyn2 .mbr-text {
  text-align: left;
}
.cid-t7iMvCnnYs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7iMvCnnYs .mbr-section-subtitle {
  text-align: left;
}
.cid-t7iMvCnnYs .mbr-section-title {
  text-align: left;
}
.cid-t7iNLo10t8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7iNLo10t8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7iNLo10t8 .row {
  flex-direction: row-reverse;
}
.cid-t7iNLo10t8 img {
  width: 100%;
}
.cid-t7iO5VjRYp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7iO5VjRYp .mbr-section-subtitle {
  text-align: left;
}
.cid-t7iO5VjRYp .mbr-section-title {
  text-align: left;
}
.cid-t72Gf2od4Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t72Gf2od4Z .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t72Gf2od4Z .mbr-text {
  text-align: left;
}
.cid-t7jeesmIN7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7jeesmIN7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7jeesmIN7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7jeesmIN7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7jeesmIN7 .mbr-description {
  text-align: left;
}
.cid-t7plAwzAbt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7plAwzAbt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7plAwzAbt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7plAwzAbt .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7plAwzAbt .mbr-description {
  text-align: left;
}
.cid-t7jhuQeZbo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7jhuQeZbo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7jhuQeZbo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7jhuQeZbo .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7jhuQeZbo .mbr-description {
  text-align: left;
}
.cid-t7jEupVKFx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7jEupVKFx .mbr-section-subtitle {
  text-align: left;
}
.cid-t7jEupVKFx .mbr-section-title {
  text-align: left;
}
.cid-t72GfAZvtl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t72GfAZvtl .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t72GfAZvtl .mbr-text {
  text-align: left;
}
.cid-t72Ghq8g3T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t72Ghq8g3T .mbr-section-subtitle {
  text-align: left;
}
.cid-t72Ghq8g3T .mbr-section-title {
  text-align: left;
}
.cid-t72Fhw5nEV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t72Fhw5nEV .mbr-section-subtitle {
  text-align: left;
}
.cid-t72Fhw5nEV .mbr-section-title {
  text-align: left;
}
.cid-t7pMLJWtcH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7pMLJWtcH .video-wrapper iframe {
  width: 100%;
}
.cid-t7pMLJWtcH .mbr-section-title,
.cid-t7pMLJWtcH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7pMLJWtcH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pMLJWtcH .mbr-section-title {
  text-align: left;
}
.cid-t7pIoDOiFO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7pIoDOiFO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7pIoDOiFO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7pIoDOiFO .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pVZTi3qk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7pVZTi3qk .video-wrapper iframe {
  width: 100%;
}
.cid-t7pVZTi3qk .mbr-section-title,
.cid-t7pVZTi3qk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7pVZTi3qk .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pVZTi3qk .mbr-section-title {
  text-align: left;
}
.cid-t7pOEEdVAq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7pOEEdVAq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7pOEEdVAq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7pOEEdVAq .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pEZW5ggO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7pEZW5ggO .video-wrapper iframe {
  width: 100%;
}
.cid-t7pEZW5ggO .mbr-section-title,
.cid-t7pEZW5ggO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7pEZW5ggO .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pEZW5ggO .mbr-section-title {
  text-align: left;
}
.cid-t7pF102pAi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7pF102pAi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7pF102pAi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7pF102pAi .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pOCIjuRN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7pOCIjuRN .video-wrapper iframe {
  width: 100%;
}
.cid-t7pOCIjuRN .mbr-section-title,
.cid-t7pOCIjuRN .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7pOCIjuRN .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pOCIjuRN .mbr-section-title {
  text-align: left;
}
.cid-tGbkoQRFWi {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t7pOBrxpWV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7pOBrxpWV .video-wrapper iframe {
  width: 100%;
}
.cid-t7pOBrxpWV .mbr-section-title,
.cid-t7pOBrxpWV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7pOBrxpWV .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7pOBrxpWV .mbr-section-title {
  text-align: left;
}
.cid-t4HxfRlAy4 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxfRlAy4 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxfRlAy4 .mbr-section-title {
  text-align: left;
}
.cid-tCMNTNPUaM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tCMNTNPUaM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCMNTNPUaM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tCMNTNPUaM .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7uKPZRF5O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7uKPZRF5O .video-wrapper iframe {
  width: 100%;
}
.cid-t7uKPZRF5O .mbr-section-title,
.cid-t7uKPZRF5O .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7uKPZRF5O .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7uKPZRF5O .mbr-section-title {
  text-align: left;
}
.cid-t7uZw799pc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7uZw799pc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7uZw799pc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7uZw799pc .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7uZw799pc .mbr-description {
  text-align: left;
}
.cid-t7v0jo68ZJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7v0jo68ZJ .mbr-section-subtitle {
  text-align: left;
}
.cid-t7v0jo68ZJ .mbr-section-title {
  text-align: left;
}
.cid-t4HxfS33OW {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4HxfS33OW .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4HxfS33OW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4HxfS33OW .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJE506Kmk {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJE506Kmk .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HxqoNKz7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxqoNKz7 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxqoNKz7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HxqoNKz7 .mbr-section-title {
  text-align: left;
}
.cid-t4HxqpGfzr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HxqpGfzr .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HxqpGfzr .mbr-text {
  text-align: left;
}
.cid-t4HxqpYbbX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HxqpYbbX .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HxqpYbbX .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4Hxqqj4pq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4Hxqqj4pq .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4Hxqqj4pq .mbr-section-title {
  text-align: left;
}
.cid-t7BvaqZPj9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BvaqZPj9 .video-wrapper iframe {
  width: 100%;
}
.cid-t7BvaqZPj9 .mbr-section-title,
.cid-t7BvaqZPj9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BvaqZPj9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BvaqZPj9 .mbr-section-title {
  text-align: left;
}
.cid-t7BvbiyR6W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BvbiyR6W .video-wrapper iframe {
  width: 100%;
}
.cid-t7BvbiyR6W .mbr-section-title,
.cid-t7BvbiyR6W .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BvbiyR6W .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BvbiyR6W .mbr-section-title {
  text-align: left;
}
.cid-t7BAef5ToK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BAef5ToK .video-wrapper iframe {
  width: 100%;
}
.cid-t7BAef5ToK .mbr-section-title,
.cid-t7BAef5ToK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BAef5ToK .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BAef5ToK .mbr-section-title {
  text-align: left;
}
.cid-t7BC29tgON {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7BC29tgON .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7BC29tgON img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7BC29tgON .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BEK4crz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BEK4crz2 .video-wrapper iframe {
  width: 100%;
}
.cid-t7BEK4crz2 .mbr-section-title,
.cid-t7BEK4crz2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BEK4crz2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BEK4crz2 .mbr-section-title {
  text-align: left;
}
.cid-t7BEKqLiYA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BEKqLiYA .video-wrapper iframe {
  width: 100%;
}
.cid-t7BEKqLiYA .mbr-section-title,
.cid-t7BEKqLiYA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BEKqLiYA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BEKqLiYA .mbr-section-title {
  text-align: left;
}
.cid-t7BO16Q2zf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BO16Q2zf .video-wrapper iframe {
  width: 100%;
}
.cid-t7BO16Q2zf .mbr-section-title,
.cid-t7BO16Q2zf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BO16Q2zf .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BO16Q2zf .mbr-section-title {
  text-align: left;
}
.cid-tar8mSeuQK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tar8mSeuQK .video-wrapper iframe {
  width: 100%;
}
.cid-tar8mSeuQK .mbr-section-title,
.cid-tar8mSeuQK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tar8mSeuQK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tar8mSeuQK .mbr-section-title {
  text-align: left;
}
.cid-t7BQxvPXdS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t7BQxvPXdS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7BQxvPXdS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7BQxvPXdS .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BQxvPXdS .mbr-description {
  text-align: left;
}
.cid-t7BPlduze9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BPlduze9 .video-wrapper iframe {
  width: 100%;
}
.cid-t7BPlduze9 .mbr-section-title,
.cid-t7BPlduze9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BPlduze9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BPlduze9 .mbr-section-title {
  text-align: left;
}
.cid-t7BQePuEff {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BQePuEff .video-wrapper iframe {
  width: 100%;
}
.cid-t7BQePuEff .mbr-section-title,
.cid-t7BQePuEff .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BQePuEff .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BQePuEff .mbr-section-title {
  text-align: left;
}
.cid-tar79GfvDb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tar79GfvDb .video-wrapper iframe {
  width: 100%;
}
.cid-tar79GfvDb .mbr-section-title,
.cid-tar79GfvDb .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tar79GfvDb .text-wrapper {
    padding: 2rem;
  }
}
.cid-tar79GfvDb .mbr-section-title {
  text-align: left;
}
.cid-t89dQ5TLxh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89dQ5TLxh .video-wrapper iframe {
  width: 100%;
}
.cid-t89dQ5TLxh .mbr-section-title,
.cid-t89dQ5TLxh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89dQ5TLxh .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89dQ5TLxh .mbr-section-title {
  text-align: left;
}
.cid-t4HxqqLepe {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxqqLepe .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxqqLepe .mbr-section-title {
  text-align: left;
}
.cid-t7GmipWSU2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GmipWSU2 .video-wrapper iframe {
  width: 100%;
}
.cid-t7GmipWSU2 .mbr-section-title,
.cid-t7GmipWSU2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GmipWSU2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GmipWSU2 .mbr-section-title {
  text-align: left;
}
.cid-t7Gqc4V8pc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7Gqc4V8pc .video-wrapper iframe {
  width: 100%;
}
.cid-t7Gqc4V8pc .mbr-section-title,
.cid-t7Gqc4V8pc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7Gqc4V8pc .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7Gqc4V8pc .mbr-section-title {
  text-align: left;
}
.cid-t7GsHOP0Dy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GsHOP0Dy .video-wrapper iframe {
  width: 100%;
}
.cid-t7GsHOP0Dy .mbr-section-title,
.cid-t7GsHOP0Dy .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GsHOP0Dy .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GsHOP0Dy .mbr-section-title {
  text-align: left;
}
.cid-t7GsJhyZNL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7GsJhyZNL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7GsJhyZNL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7GsJhyZNL .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GxkCmiot {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GxkCmiot .video-wrapper iframe {
  width: 100%;
}
.cid-t7GxkCmiot .mbr-section-title,
.cid-t7GxkCmiot .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GxkCmiot .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GxkCmiot .mbr-section-title {
  text-align: left;
}
.cid-t7GyicSoit {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GyicSoit .video-wrapper iframe {
  width: 100%;
}
.cid-t7GyicSoit .mbr-section-title,
.cid-t7GyicSoit .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GyicSoit .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GyicSoit .mbr-section-title {
  text-align: left;
}
.cid-tGbokCLldD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7GBBT7XTq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GBBT7XTq .video-wrapper iframe {
  width: 100%;
}
.cid-t7GBBT7XTq .mbr-section-title,
.cid-t7GBBT7XTq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GBBT7XTq .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GBBT7XTq .mbr-section-title {
  text-align: left;
}
.cid-t7BEKInnoO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BEKInnoO .video-wrapper iframe {
  width: 100%;
}
.cid-t7BEKInnoO .mbr-section-title,
.cid-t7BEKInnoO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BEKInnoO .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BEKInnoO .mbr-section-title {
  text-align: left;
}
.cid-t4Hxqr7YXI {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4Hxqr7YXI .mbr-section-subtitle {
  text-align: left;
}
.cid-t4Hxqr7YXI .mbr-section-title {
  text-align: left;
}
.cid-t7GGDKTO8D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GGDKTO8D .video-wrapper iframe {
  width: 100%;
}
.cid-t7GGDKTO8D .mbr-section-title,
.cid-t7GGDKTO8D .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GGDKTO8D .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GGDKTO8D .mbr-section-title {
  text-align: left;
}
.cid-t7GJjcgoPB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GJjcgoPB .video-wrapper iframe {
  width: 100%;
}
.cid-t7GJjcgoPB .mbr-section-title,
.cid-t7GJjcgoPB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GJjcgoPB .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GJjcgoPB .mbr-section-title {
  text-align: left;
}
.cid-t7GDJbUIsH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GDJbUIsH .video-wrapper iframe {
  width: 100%;
}
.cid-t7GDJbUIsH .mbr-section-title,
.cid-t7GDJbUIsH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GDJbUIsH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GDJbUIsH .mbr-section-title {
  text-align: left;
}
.cid-t7GLdNtliD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7GLdNtliD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7GLdNtliD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7GLdNtliD .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GOhOkmV1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GOhOkmV1 .video-wrapper iframe {
  width: 100%;
}
.cid-t7GOhOkmV1 .mbr-section-title,
.cid-t7GOhOkmV1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GOhOkmV1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GOhOkmV1 .mbr-section-title {
  text-align: left;
}
.cid-t7GQKqmLIF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GQKqmLIF .video-wrapper iframe {
  width: 100%;
}
.cid-t7GQKqmLIF .mbr-section-title,
.cid-t7GQKqmLIF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GQKqmLIF .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GQKqmLIF .mbr-section-title {
  text-align: left;
}
.cid-t7GRF7pyqU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GRF7pyqU .video-wrapper iframe {
  width: 100%;
}
.cid-t7GRF7pyqU .mbr-section-title,
.cid-t7GRF7pyqU .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GRF7pyqU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GRF7pyqU .mbr-section-title {
  text-align: left;
}
.cid-t7GSFr1FPa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7GSFr1FPa .video-wrapper iframe {
  width: 100%;
}
.cid-t7GSFr1FPa .mbr-section-title,
.cid-t7GSFr1FPa .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7GSFr1FPa .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7GSFr1FPa .mbr-section-title {
  text-align: left;
}
.cid-t7GSGh6R8R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t7GSGh6R8R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7GSGh6R8R img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7GSGh6R8R .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7X3VPQrPd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7X3VPQrPd .video-wrapper iframe {
  width: 100%;
}
.cid-t7X3VPQrPd .mbr-section-title,
.cid-t7X3VPQrPd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7X3VPQrPd .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7X3VPQrPd .mbr-section-title {
  text-align: left;
}
.cid-t7X3YkK5oJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7X3YkK5oJ .video-wrapper iframe {
  width: 100%;
}
.cid-t7X3YkK5oJ .mbr-section-title,
.cid-t7X3YkK5oJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7X3YkK5oJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7X3YkK5oJ .mbr-section-title {
  text-align: left;
}
.cid-t7X3WnxJgf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7X3WnxJgf .video-wrapper iframe {
  width: 100%;
}
.cid-t7X3WnxJgf .mbr-section-title,
.cid-t7X3WnxJgf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7X3WnxJgf .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7X3WnxJgf .mbr-section-title {
  text-align: left;
}
.cid-t7X3WTbgML {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7X3WTbgML .video-wrapper iframe {
  width: 100%;
}
.cid-t7X3WTbgML .mbr-section-title,
.cid-t7X3WTbgML .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7X3WTbgML .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7X3WTbgML .mbr-section-title {
  text-align: left;
}
.cid-t7BxFluo4y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7BxFluo4y .video-wrapper iframe {
  width: 100%;
}
.cid-t7BxFluo4y .mbr-section-title,
.cid-t7BxFluo4y .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7BxFluo4y .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7BxFluo4y .mbr-section-title {
  text-align: left;
}
.cid-t4HxqruHgA {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4HxqruHgA .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4HxqruHgA .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4HxqruHgA .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJIhdLvB7 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJIhdLvB7 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HxPF5XAp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxPF5XAp .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxPF5XAp .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HxPF5XAp .mbr-section-title {
  text-align: left;
}
.cid-t4HxPFvdlq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HxPFvdlq .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HxPFvdlq .mbr-text {
  text-align: left;
}
.cid-t4HxPFJapV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HxPFJapV .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HxPFJapV .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HxPFZcND {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxPFZcND .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HxPFZcND .mbr-section-title {
  text-align: left;
}
.cid-t89k0R5WFU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89k0R5WFU .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t89k0R5WFU .mbr-text {
  text-align: left;
}
.cid-t89iAa7nLr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t89iAa7nLr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t89iAa7nLr .row {
  flex-direction: row-reverse;
}
.cid-t89iAa7nLr img {
  width: 100%;
}
.cid-t89j2o8lP6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89j2o8lP6 .mbr-section-subtitle {
  text-align: left;
}
.cid-t89j2o8lP6 .mbr-section-title {
  text-align: left;
}
.cid-t89nZJUxhf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89nZJUxhf .video-wrapper iframe {
  width: 100%;
}
.cid-t89nZJUxhf .mbr-section-title,
.cid-t89nZJUxhf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89nZJUxhf .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89nZJUxhf .mbr-section-title {
  text-align: left;
}
.cid-t89nXL1GwY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89nXL1GwY .video-wrapper iframe {
  width: 100%;
}
.cid-t89nXL1GwY .mbr-section-title,
.cid-t89nXL1GwY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89nXL1GwY .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89nXL1GwY .mbr-section-title {
  text-align: left;
}
.cid-t89nMyECRz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89nMyECRz .mbr-section-subtitle {
  text-align: left;
}
.cid-t89nMyECRz .mbr-section-title {
  text-align: left;
}
.cid-t89CT1gjHU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89CT1gjHU .counter-container ul {
  margin-bottom: 0;
}
.cid-t89CT1gjHU .counter-container ul li {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.cid-t89nQsKaPY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89nQsKaPY .video-wrapper iframe {
  width: 100%;
}
.cid-t89nQsKaPY .mbr-section-title,
.cid-t89nQsKaPY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89nQsKaPY .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89nQsKaPY .mbr-section-title {
  text-align: left;
}
.cid-t89oEA0ojc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89oEA0ojc .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t89oEA0ojc .mbr-text {
  text-align: left;
}
.cid-t89MmK9gIA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t89MmK9gIA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t89MmK9gIA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t89MmK9gIA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89MmK9gIA .mbr-description {
  text-align: left;
}
.cid-t89MnqCiT6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t89MnqCiT6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t89MnqCiT6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t89MnqCiT6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89MnqCiT6 .mbr-description {
  text-align: left;
}
.cid-t89T3xOYA5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89T3xOYA5 .video-wrapper iframe {
  width: 100%;
}
.cid-t89T3xOYA5 .mbr-section-title,
.cid-t89T3xOYA5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89T3xOYA5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89T3xOYA5 .mbr-section-title {
  text-align: left;
}
.cid-t89TpIT6R9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89TpIT6R9 .video-wrapper iframe {
  width: 100%;
}
.cid-t89TpIT6R9 .mbr-section-title,
.cid-t89TpIT6R9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89TpIT6R9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89TpIT6R9 .mbr-section-title {
  text-align: left;
}
.cid-t89TyoKMWI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89TyoKMWI .video-wrapper iframe {
  width: 100%;
}
.cid-t89TyoKMWI .mbr-section-title,
.cid-t89TyoKMWI .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89TyoKMWI .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89TyoKMWI .mbr-section-title {
  text-align: left;
}
.cid-t8b67d1rTJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8b67d1rTJ .video-wrapper iframe {
  width: 100%;
}
.cid-t8b67d1rTJ .mbr-section-title,
.cid-t8b67d1rTJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8b67d1rTJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8b67d1rTJ .mbr-section-title {
  text-align: left;
}
.cid-t89N3o4vr3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89N3o4vr3 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t89N3o4vr3 .mbr-text {
  text-align: left;
}
.cid-t89ZF7zQtH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t89ZF7zQtH .video-wrapper iframe {
  width: 100%;
}
.cid-t89ZF7zQtH .mbr-section-title,
.cid-t89ZF7zQtH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t89ZF7zQtH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t89ZF7zQtH .mbr-section-title {
  text-align: left;
}
.cid-t8a4yPITVd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8a4yPITVd .video-wrapper iframe {
  width: 100%;
}
.cid-t8a4yPITVd .mbr-section-title,
.cid-t8a4yPITVd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8a4yPITVd .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8a4yPITVd .mbr-section-title {
  text-align: left;
}
.cid-t4HxPGj7hy {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxPGj7hy .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxPGj7hy .mbr-section-title {
  text-align: left;
}
.cid-t8aTjFFuF1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8aTjFFuF1 .video-wrapper iframe {
  width: 100%;
}
.cid-t8aTjFFuF1 .mbr-section-title,
.cid-t8aTjFFuF1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8aTjFFuF1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8aTjFFuF1 .mbr-section-title {
  text-align: left;
}
.cid-t8b0xH3GgP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8b0xH3GgP .video-wrapper iframe {
  width: 100%;
}
.cid-t8b0xH3GgP .mbr-section-title,
.cid-t8b0xH3GgP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8b0xH3GgP .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8b0xH3GgP .mbr-section-title {
  text-align: left;
}
.cid-t8aXJeY8kp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8aXJeY8kp .video-wrapper iframe {
  width: 100%;
}
.cid-t8aXJeY8kp .mbr-section-title,
.cid-t8aXJeY8kp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8aXJeY8kp .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8aXJeY8kp .mbr-section-title {
  text-align: left;
}
.cid-t8aOLC1hDf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8aOLC1hDf .video-wrapper iframe {
  width: 100%;
}
.cid-t8aOLC1hDf .mbr-section-title,
.cid-t8aOLC1hDf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8aOLC1hDf .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8aOLC1hDf .mbr-section-title {
  text-align: left;
}
.cid-t4HxPGItu8 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxPGItu8 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxPGItu8 .mbr-section-title {
  text-align: left;
}
.cid-t89ZMffPmI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t89ZMffPmI .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t89ZMffPmI .mbr-text {
  text-align: left;
}
.cid-t8cjp0lkyM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8cjp0lkyM .mbr-section-subtitle {
  text-align: left;
}
.cid-t8cjp0lkyM .mbr-section-title {
  text-align: left;
}
.cid-t8f2icfLfL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8f2icfLfL .video-wrapper iframe {
  width: 100%;
}
.cid-t8f2icfLfL .mbr-section-title,
.cid-t8f2icfLfL .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8f2icfLfL .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8f2icfLfL .mbr-section-title {
  text-align: left;
}
.cid-t8f2cEVOoq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8f2cEVOoq .mbr-section-subtitle {
  text-align: left;
}
.cid-t8f2cEVOoq .mbr-section-title {
  text-align: left;
}
.cid-t8c1qEF196 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8c1qEF196 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t8c1qEF196 .mbr-text {
  text-align: left;
}
.cid-t8c2Z298fb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t8c2Z298fb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8c2Z298fb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8c2Z298fb .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8c888zWBP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t8c888zWBP .video-wrapper iframe {
  width: 100%;
}
.cid-t8c888zWBP .mbr-section-title,
.cid-t8c888zWBP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t8c888zWBP .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8c888zWBP .mbr-section-title {
  text-align: left;
}
.cid-t8c888zWBP .mbr-text {
  text-align: left;
}
.cid-t4HxPH33kq {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4HxPH33kq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4HxPH33kq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4HxPH33kq .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJIWx6xyV {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJIWx6xyV .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HxY9hJ0V {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxY9hJ0V .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxY9hJ0V .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HxY9hJ0V .mbr-section-title {
  text-align: left;
}
.cid-t4HxY9HmLm {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HxY9HmLm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HxY9HmLm .mbr-text {
  text-align: left;
}
.cid-t4HxY9UafO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HxY9UafO .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HxY9UafO .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HxY9UafO .mbr-text {
  text-align: left;
}
.cid-t4HxYa8fOp {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxYa8fOp .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HxYa8fOp .mbr-section-title {
  text-align: left;
}
.cid-t9QWgGVQwW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9QWgGVQwW .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t9QWgGVQwW .mbr-text {
  text-align: left;
}
.cid-tLiYlgsW3W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ta2GzLAaHR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta2GzLAaHR .video-wrapper iframe {
  width: 100%;
}
.cid-ta2GzLAaHR .mbr-section-title,
.cid-ta2GzLAaHR .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta2GzLAaHR .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2GzLAaHR .mbr-section-title {
  text-align: left;
}
.cid-ta2IM02wgO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta2IM02wgO .video-wrapper iframe {
  width: 100%;
}
.cid-ta2IM02wgO .mbr-section-title,
.cid-ta2IM02wgO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta2IM02wgO .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2IM02wgO .mbr-section-title {
  text-align: left;
}
.cid-t9QWfyn7mc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9QWfyn7mc .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t9QWfyn7mc .mbr-text {
  text-align: left;
}
.cid-ta2BxIy8rv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta2BxIy8rv .video-wrapper iframe {
  width: 100%;
}
.cid-ta2BxIy8rv .mbr-section-title,
.cid-ta2BxIy8rv .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta2BxIy8rv .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2BxIy8rv .mbr-section-title {
  text-align: left;
}
.cid-ta2EcaIoac {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta2EcaIoac .video-wrapper iframe {
  width: 100%;
}
.cid-ta2EcaIoac .mbr-section-title,
.cid-ta2EcaIoac .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta2EcaIoac .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2EcaIoac .mbr-section-title {
  text-align: left;
}
.cid-t4HxYawmQB {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxYawmQB .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxYawmQB .mbr-section-title {
  text-align: left;
}
.cid-ta2LRNsvra {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ta2LRNsvra .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ta2LRNsvra img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ta2LRNsvra .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2LRNsvra .mbr-description {
  text-align: left;
}
.cid-ta2LgA0d5o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta2LgA0d5o .video-wrapper iframe {
  width: 100%;
}
.cid-ta2LgA0d5o .mbr-section-title,
.cid-ta2LgA0d5o .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta2LgA0d5o .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2LgA0d5o .mbr-section-title {
  text-align: left;
}
.cid-ta2KBWsiA9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta2KBWsiA9 .video-wrapper iframe {
  width: 100%;
}
.cid-ta2KBWsiA9 .mbr-section-title,
.cid-ta2KBWsiA9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta2KBWsiA9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta2KBWsiA9 .mbr-section-title {
  text-align: left;
}
.cid-t4HxYaTocR {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HxYaTocR .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HxYaTocR .mbr-section-title {
  text-align: left;
}
.cid-taamNAPVci {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-taamNAPVci .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taamNAPVci .mbr-text {
  text-align: left;
}
.cid-ta3tPSmZ4J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta3tPSmZ4J .video-wrapper iframe {
  width: 100%;
}
.cid-ta3tPSmZ4J .mbr-section-title,
.cid-ta3tPSmZ4J .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta3tPSmZ4J .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta3tPSmZ4J .mbr-section-title {
  text-align: left;
}
.cid-ta3x3jI0mZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta3x3jI0mZ .video-wrapper iframe {
  width: 100%;
}
.cid-ta3x3jI0mZ .mbr-section-title,
.cid-ta3x3jI0mZ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta3x3jI0mZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta3x3jI0mZ .mbr-section-title {
  text-align: left;
}
.cid-ta4gbMV8dY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta4gbMV8dY .video-wrapper iframe {
  width: 100%;
}
.cid-ta4gbMV8dY .mbr-section-title,
.cid-ta4gbMV8dY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta4gbMV8dY .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta4gbMV8dY .mbr-section-title {
  text-align: left;
}
.cid-ta4lz7ZsEX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ta4lz7ZsEX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ta4lz7ZsEX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ta4lz7ZsEX .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta4lz7ZsEX .mbr-description {
  text-align: left;
}
.cid-ta4kXCu09i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta4kXCu09i .video-wrapper iframe {
  width: 100%;
}
.cid-ta4kXCu09i .mbr-section-title,
.cid-ta4kXCu09i .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta4kXCu09i .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta4kXCu09i .mbr-section-title {
  text-align: left;
}
.cid-taalmOVI8F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taalmOVI8F .video-wrapper iframe {
  width: 100%;
}
.cid-taalmOVI8F .mbr-section-title,
.cid-taalmOVI8F .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taalmOVI8F .text-wrapper {
    padding: 2rem;
  }
}
.cid-taalmOVI8F .mbr-section-title {
  text-align: left;
}
.cid-taamYJabnc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-taamYJabnc .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taamYJabnc .mbr-text {
  text-align: left;
}
.cid-ta88fZnm8N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta88fZnm8N .video-wrapper iframe {
  width: 100%;
}
.cid-ta88fZnm8N .mbr-section-title,
.cid-ta88fZnm8N .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta88fZnm8N .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta88fZnm8N .mbr-section-title {
  text-align: left;
}
.cid-taayh3dl0Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taayh3dl0Q .video-wrapper iframe {
  width: 100%;
}
.cid-taayh3dl0Q .mbr-section-title,
.cid-taayh3dl0Q .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taayh3dl0Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-taayh3dl0Q .mbr-section-title {
  text-align: left;
}
.cid-tar9QoPd0Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tar9QoPd0Z .video-wrapper iframe {
  width: 100%;
}
.cid-tar9QoPd0Z .mbr-section-title,
.cid-tar9QoPd0Z .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tar9QoPd0Z .text-wrapper {
    padding: 2rem;
  }
}
.cid-tar9QoPd0Z .mbr-section-title {
  text-align: left;
}
.cid-ta8bftaArj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-ta8bftaArj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ta8bftaArj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ta8bftaArj .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta8e9IZzhd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta8e9IZzhd .video-wrapper iframe {
  width: 100%;
}
.cid-ta8e9IZzhd .mbr-section-title,
.cid-ta8e9IZzhd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta8e9IZzhd .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta8e9IZzhd .mbr-section-title {
  text-align: left;
}
.cid-ta8fUEPmjh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta8fUEPmjh .video-wrapper iframe {
  width: 100%;
}
.cid-ta8fUEPmjh .mbr-section-title,
.cid-ta8fUEPmjh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta8fUEPmjh .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta8fUEPmjh .mbr-section-title {
  text-align: left;
}
.cid-ta8qgvES0p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta8qgvES0p .video-wrapper iframe {
  width: 100%;
}
.cid-ta8qgvES0p .mbr-section-title,
.cid-ta8qgvES0p .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta8qgvES0p .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta8qgvES0p .mbr-section-title {
  text-align: left;
}
.cid-t8VgYINpkF {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8VgYINpkF .mbr-section-subtitle {
  text-align: left;
}
.cid-t8VgYINpkF .mbr-section-title {
  text-align: left;
}
.cid-taax3XR904 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-taax3XR904 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taax3XR904 .mbr-text {
  text-align: left;
}
.cid-ta9k47onmK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta9k47onmK .video-wrapper iframe {
  width: 100%;
}
.cid-ta9k47onmK .mbr-section-title,
.cid-ta9k47onmK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta9k47onmK .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta9k47onmK .mbr-section-title {
  text-align: left;
}
.cid-tad5aW6y1i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tad5aW6y1i .video-wrapper iframe {
  width: 100%;
}
.cid-tad5aW6y1i .mbr-section-title,
.cid-tad5aW6y1i .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tad5aW6y1i .text-wrapper {
    padding: 2rem;
  }
}
.cid-tad5aW6y1i .mbr-section-title {
  text-align: left;
}
.cid-tad2Elb2Ro {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tad2Elb2Ro .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tad2Elb2Ro img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tad2Elb2Ro .text-wrapper {
    padding: 2rem;
  }
}
.cid-tad8kJ2IzT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tad8kJ2IzT .video-wrapper iframe {
  width: 100%;
}
.cid-tad8kJ2IzT .mbr-section-title,
.cid-tad8kJ2IzT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tad8kJ2IzT .text-wrapper {
    padding: 2rem;
  }
}
.cid-tad8kJ2IzT .mbr-section-title {
  text-align: left;
}
.cid-tad992ZWoP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tad992ZWoP .video-wrapper iframe {
  width: 100%;
}
.cid-tad992ZWoP .mbr-section-title,
.cid-tad992ZWoP .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tad992ZWoP .text-wrapper {
    padding: 2rem;
  }
}
.cid-tad992ZWoP .mbr-section-title {
  text-align: left;
}
.cid-tadbUIbVoM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tadbUIbVoM .video-wrapper iframe {
  width: 100%;
}
.cid-tadbUIbVoM .mbr-section-title,
.cid-tadbUIbVoM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tadbUIbVoM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tadbUIbVoM .mbr-section-title {
  text-align: left;
}
.cid-ta9nWW4MIz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ta9nWW4MIz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ta9nWW4MIz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ta9nWW4MIz .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta9nWW4MIz .mbr-description {
  text-align: left;
}
.cid-taaWnfX3z1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-taaWnfX3z1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taaWnfX3z1 .mbr-text {
  text-align: left;
}
.cid-ta9m6wmoZx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ta9m6wmoZx .video-wrapper iframe {
  width: 100%;
}
.cid-ta9m6wmoZx .mbr-section-title,
.cid-ta9m6wmoZx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ta9m6wmoZx .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta9m6wmoZx .mbr-section-title {
  text-align: left;
}
.cid-tadg6rGfaj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tadg6rGfaj .video-wrapper iframe {
  width: 100%;
}
.cid-tadg6rGfaj .mbr-section-title,
.cid-tadg6rGfaj .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tadg6rGfaj .text-wrapper {
    padding: 2rem;
  }
}
.cid-tadg6rGfaj .mbr-section-title {
  text-align: left;
}
.cid-tadlfvvgCq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tadlfvvgCq .video-wrapper iframe {
  width: 100%;
}
.cid-tadlfvvgCq .mbr-section-title,
.cid-tadlfvvgCq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tadlfvvgCq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tadlfvvgCq .mbr-section-title {
  text-align: left;
}
.cid-tadm57IMmc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tadm57IMmc .video-wrapper iframe {
  width: 100%;
}
.cid-tadm57IMmc .mbr-section-title,
.cid-tadm57IMmc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tadm57IMmc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tadm57IMmc .mbr-section-title {
  text-align: left;
}
.cid-t8VnrTZIMc {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8VnrTZIMc .mbr-section-subtitle {
  text-align: left;
}
.cid-t8VnrTZIMc .mbr-section-title {
  text-align: left;
}
.cid-takbtPvVyY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-takbtPvVyY .video-wrapper iframe {
  width: 100%;
}
.cid-takbtPvVyY .mbr-section-title,
.cid-takbtPvVyY .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-takbtPvVyY .text-wrapper {
    padding: 2rem;
  }
}
.cid-takbtPvVyY .mbr-section-title {
  text-align: left;
}
.cid-tajmN139YY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tajmN139YY .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tajmN139YY .mbr-text {
  text-align: left;
}
.cid-tLiZFJVjlm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tajpIC9ycS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tajpIC9ycS .video-wrapper iframe {
  width: 100%;
}
.cid-tajpIC9ycS .mbr-section-title,
.cid-tajpIC9ycS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tajpIC9ycS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tajpIC9ycS .mbr-section-title {
  text-align: left;
}
.cid-tajQvajqAM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tajQvajqAM .video-wrapper iframe {
  width: 100%;
}
.cid-tajQvajqAM .mbr-section-title,
.cid-tajQvajqAM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tajQvajqAM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tajQvajqAM .mbr-section-title {
  text-align: left;
}
.cid-tajWvI0OvQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tajWvI0OvQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tajWvI0OvQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tajWvI0OvQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tajWvI0OvQ .mbr-description {
  text-align: left;
}
.cid-tajTAmM0bq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tajTAmM0bq .video-wrapper iframe {
  width: 100%;
}
.cid-tajTAmM0bq .mbr-section-title,
.cid-tajTAmM0bq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tajTAmM0bq .text-wrapper {
    padding: 2rem;
  }
}
.cid-tajTAmM0bq .mbr-section-title {
  text-align: left;
}
.cid-tak3s02qvk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tak3s02qvk .video-wrapper iframe {
  width: 100%;
}
.cid-tak3s02qvk .mbr-section-title,
.cid-tak3s02qvk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tak3s02qvk .text-wrapper {
    padding: 2rem;
  }
}
.cid-tak3s02qvk .mbr-section-title {
  text-align: left;
}
.cid-takat3vBLY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-takat3vBLY .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-takat3vBLY .mbr-text {
  text-align: left;
}
.cid-takwWdzcEy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-takwWdzcEy .mbr-section-subtitle {
  text-align: left;
}
.cid-takwWdzcEy .mbr-section-title {
  text-align: left;
}
.cid-takx44mAEC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-takx44mAEC .video-wrapper iframe {
  width: 100%;
}
.cid-takx44mAEC .mbr-section-title,
.cid-takx44mAEC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-takx44mAEC .text-wrapper {
    padding: 2rem;
  }
}
.cid-takx44mAEC .mbr-section-title {
  text-align: left;
}
.cid-tajprOY02x {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tajprOY02x .mbr-section-subtitle {
  text-align: left;
}
.cid-tajprOY02x .mbr-section-title {
  text-align: left;
}
.cid-takxMceiHy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-takxMceiHy .video-wrapper iframe {
  width: 100%;
}
.cid-takxMceiHy .mbr-section-title,
.cid-takxMceiHy .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-takxMceiHy .text-wrapper {
    padding: 2rem;
  }
}
.cid-takxMceiHy .mbr-section-title {
  text-align: left;
}
.cid-talfPu1SZk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-talfPu1SZk .video-wrapper iframe {
  width: 100%;
}
.cid-talfPu1SZk .mbr-section-title,
.cid-talfPu1SZk .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-talfPu1SZk .text-wrapper {
    padding: 2rem;
  }
}
.cid-talfPu1SZk .mbr-section-title {
  text-align: left;
}
.cid-takaCdwtfF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-takaCdwtfF .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-takaCdwtfF .mbr-text {
  text-align: left;
}
.cid-takaLIxvdx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-takaLIxvdx .mbr-section-subtitle {
  text-align: left;
}
.cid-takaLIxvdx .mbr-section-title {
  text-align: left;
}
.cid-tapRJKZI7z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tapRJKZI7z .video-wrapper iframe {
  width: 100%;
}
.cid-tapRJKZI7z .mbr-section-title,
.cid-tapRJKZI7z .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tapRJKZI7z .text-wrapper {
    padding: 2rem;
  }
}
.cid-tapRJKZI7z .mbr-section-title {
  text-align: left;
}
.cid-taqnkxvgMX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqnkxvgMX .video-wrapper iframe {
  width: 100%;
}
.cid-taqnkxvgMX .mbr-section-title,
.cid-taqnkxvgMX .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqnkxvgMX .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqnkxvgMX .mbr-section-title {
  text-align: left;
}
.cid-tamsi7ChZ6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tamsi7ChZ6 .video-wrapper iframe {
  width: 100%;
}
.cid-tamsi7ChZ6 .mbr-section-title,
.cid-tamsi7ChZ6 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tamsi7ChZ6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tamsi7ChZ6 .mbr-section-title {
  text-align: left;
}
.cid-tamsyUDusD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-tamsyUDusD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tamsyUDusD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tamsyUDusD .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqza1mdbO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqza1mdbO .video-wrapper iframe {
  width: 100%;
}
.cid-taqza1mdbO .mbr-section-title,
.cid-taqza1mdbO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqza1mdbO .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqza1mdbO .mbr-section-title {
  text-align: left;
}
.cid-taqAr388kK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqAr388kK .video-wrapper iframe {
  width: 100%;
}
.cid-taqAr388kK .mbr-section-title,
.cid-taqAr388kK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqAr388kK .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqAr388kK .mbr-section-title {
  text-align: left;
}
.cid-taqGMTVEzv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-taqGMTVEzv .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taqGMTVEzv .mbr-text {
  text-align: left;
}
.cid-tmBCuJ8yfL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmBCuJ8yfL .mbr-section-subtitle {
  text-align: left;
}
.cid-tmBCuJ8yfL .mbr-section-title {
  text-align: left;
}
.cid-taqHURP90C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqHURP90C .video-wrapper iframe {
  width: 100%;
}
.cid-taqHURP90C .mbr-section-title,
.cid-taqHURP90C .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqHURP90C .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqHURP90C .mbr-section-title {
  text-align: left;
}
.cid-taqHVe6bjo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqHVe6bjo .video-wrapper iframe {
  width: 100%;
}
.cid-taqHVe6bjo .mbr-section-title,
.cid-taqHVe6bjo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqHVe6bjo .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqHVe6bjo .mbr-section-title {
  text-align: left;
}
.cid-tar91QJ4kN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tar91QJ4kN .video-wrapper iframe {
  width: 100%;
}
.cid-tar91QJ4kN .mbr-section-title,
.cid-tar91QJ4kN .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tar91QJ4kN .text-wrapper {
    padding: 2rem;
  }
}
.cid-tar91QJ4kN .mbr-section-title {
  text-align: left;
}
.cid-taqHVxy616 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqHVxy616 .video-wrapper iframe {
  width: 100%;
}
.cid-taqHVxy616 .mbr-section-title,
.cid-taqHVxy616 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqHVxy616 .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqHVxy616 .mbr-section-title {
  text-align: left;
}
.cid-taqMKeYe94 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-taqMKeYe94 .video-wrapper iframe {
  width: 100%;
}
.cid-taqMKeYe94 .mbr-section-title,
.cid-taqMKeYe94 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-taqMKeYe94 .text-wrapper {
    padding: 2rem;
  }
}
.cid-taqMKeYe94 .mbr-section-title {
  text-align: left;
}
.cid-t4HxYbbE1z {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4HxYbbE1z .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4HxYbbE1z .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4HxYbbE1z .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJJ7xKm3Y {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJJ7xKm3Y .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HwM2nUDR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwM2nUDR .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HwM2nUDR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HwM2nUDR .mbr-section-title {
  text-align: left;
}
.cid-t4HwM2OxLA {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HwM2OxLA .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HwM2OxLA .mbr-text {
  text-align: left;
}
.cid-t4HwM329aW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HwM329aW .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HwM329aW .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HwM3g8h6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwM3g8h6 .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HwM3g8h6 .mbr-section-title {
  text-align: left;
}
.cid-t4HwM3Axs8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwM3Axs8 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HwM3Axs8 .mbr-section-title {
  text-align: left;
}
.cid-t4LEyTmbyl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t4LEyTmbyl .video-wrapper iframe {
  width: 100%;
}
.cid-t4LEyTmbyl .mbr-section-title,
.cid-t4LEyTmbyl .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t4LEyTmbyl .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4LEyTmbyl .mbr-section-title {
  text-align: left;
}
.cid-t4HwM3Zhe3 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwM3Zhe3 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HwM3Zhe3 .mbr-section-title {
  text-align: left;
}
.cid-t4LFmoP4sm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4LFmoP4sm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4LFmoP4sm .mbr-text {
  text-align: left;
}
.cid-t4LFtSR704 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4LFtSR704 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4LFtSR704 .mbr-section-title {
  text-align: left;
}
.cid-t4LJLEsIsg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4LJLEsIsg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4LJLEsIsg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4LJLEsIsg .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4LJLEsIsg .mbr-description {
  text-align: left;
}
.cid-tLih8N0iPS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4M5zI5fdb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4M5zI5fdb .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4M5zI5fdb .mbr-text {
  text-align: left;
}
.cid-t4M5FGDzZ7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4M5FGDzZ7 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4M5FGDzZ7 .mbr-section-title {
  text-align: left;
}
.cid-t4MaXkcAwA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4MaXkcAwA .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4MaXkcAwA .mbr-text {
  text-align: left;
}
.cid-t4MbPwNYFX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4MbPwNYFX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4MbPwNYFX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4MbPwNYFX .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4MbPwNYFX .mbr-description {
  text-align: left;
}
.cid-t4McxE9wH2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4McxE9wH2 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4McxE9wH2 .mbr-section-title {
  text-align: left;
}
.cid-t4MhBDcXgm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4MhBDcXgm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4MhBDcXgm .mbr-text {
  text-align: left;
}
.cid-t4MhNMq9mi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4MhNMq9mi .mbr-section-subtitle {
  text-align: left;
}
.cid-t4MhNMq9mi .mbr-section-title {
  text-align: left;
}
.cid-t4HwM4h5N9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4HwM4h5N9 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4HwM4h5N9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4HwM4h5N9 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJCKdv8JN {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJCKdv8JN .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HzoWN1Bv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HzoWN1Bv .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HzoWN1Bv .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HzoWN1Bv .mbr-section-title {
  text-align: left;
}
.cid-t4HzoYXUxE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HzoYXUxE .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HzoYXUxE .mbr-text {
  text-align: left;
}
.cid-t4HzoZepFk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HzoZepFk .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HzoZepFk .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HzoZCIDu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HzoZCIDu .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HzoZCIDu .mbr-section-title {
  text-align: left;
}
.cid-t4R1YY9ndU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t4R1YY9ndU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t4R1YY9ndU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t4R1YY9ndU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4R1YY9ndU .mbr-description {
  text-align: left;
}
.cid-t6EhAXO4uI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6EhAXO4uI .video-wrapper iframe {
  width: 100%;
}
.cid-t6EhAXO4uI .mbr-section-title,
.cid-t6EhAXO4uI .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6EhAXO4uI .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6EhAXO4uI .mbr-section-title {
  text-align: left;
}
.cid-t6ElDbZrfX {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6ElDbZrfX .mbr-section-subtitle {
  text-align: left;
}
.cid-t6ElDbZrfX .mbr-section-title {
  text-align: left;
}
.cid-t6EpkJeBKA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6EpkJeBKA .video-wrapper iframe {
  width: 100%;
}
.cid-t6EpkJeBKA .mbr-section-title,
.cid-t6EpkJeBKA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6EpkJeBKA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6EpkJeBKA .mbr-section-title {
  text-align: left;
}
.cid-t6Er73SUIB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6Er73SUIB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6Er73SUIB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6Er73SUIB .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4Hzp00uqa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4Hzp00uqa .mbr-section-subtitle {
  text-align: left;
}
.cid-t4Hzp00uqa .mbr-section-title {
  text-align: left;
}
.cid-t4Hzp0lUio {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4Hzp0lUio .mbr-section-subtitle {
  text-align: left;
}
.cid-t4Hzp0lUio .mbr-section-title {
  text-align: left;
}
.cid-t6EtamrVqR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6EtamrVqR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6EtamrVqR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6EtamrVqR .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6EtaW9c1j {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6EtaW9c1j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6EtaW9c1j img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6EtaW9c1j .text-wrapper {
    padding: 2rem;
  }
}
.cid-t4Hzp0MPaF {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4Hzp0MPaF .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4Hzp0MPaF .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4Hzp0MPaF .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJDnBPbrM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJDnBPbrM .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HBFrwSqO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HBFrwSqO .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HBFrwSqO .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HBFrwSqO .mbr-section-title {
  text-align: left;
}
.cid-t4HBFsaUGM {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HBFsaUGM .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HBFsaUGM .mbr-text {
  text-align: left;
}
.cid-t4HBFsq5bl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HBFsq5bl .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HBFsq5bl .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HBFsKu9l {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HBFsKu9l .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HBFsKu9l .mbr-section-title {
  text-align: left;
}
.cid-tzjL0JCa4y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjL0JCa4y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjL0JCa4y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjL0JCa4y .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjL0JCa4y .mbr-description {
  text-align: left;
}
.cid-tzjL1CKdTk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjL1CKdTk .mbr-section-subtitle {
  text-align: left;
}
.cid-tzjL1CKdTk .mbr-section-title {
  text-align: left;
}
.cid-t4HBFtcwk6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HBFtcwk6 .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HBFtcwk6 .mbr-section-title {
  text-align: left;
}
.cid-tzjxo9XlSI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxo9XlSI .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxo9XlSI .mbr-text {
  text-align: left;
}
.cid-tzjIibxkCD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjIibxkCD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjIibxkCD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjIibxkCD .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjIibxkCD .mbr-description {
  text-align: left;
}
.cid-tzjzuDoyIQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjzuDoyIQ .mbr-section-subtitle {
  text-align: left;
}
.cid-tzjzuDoyIQ .mbr-section-title {
  text-align: left;
}
.cid-tzjBrpPBvs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjBrpPBvs blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tzqWxr4tGb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzqWxr4tGb .mbr-section-subtitle {
  text-align: left;
}
.cid-tzqWxr4tGb .mbr-section-title {
  text-align: left;
}
.cid-tzjxtmdWwg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxtmdWwg .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxtmdWwg .mbr-text {
  text-align: left;
}
.cid-tGyPYleT1Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjCCjUnLp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjCCjUnLp .mbr-section-subtitle {
  text-align: left;
}
.cid-tzjCCjUnLp .mbr-section-title {
  text-align: left;
}
.cid-tzjxvaM71s {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxvaM71s .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxvaM71s .mbr-text {
  text-align: left;
}
.cid-tzjIVyxBbr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjIVyxBbr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjIVyxBbr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjIVyxBbr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjIVyxBbr .mbr-description {
  text-align: left;
}
.cid-tzjDxBprqD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjDxBprqD .mbr-section-subtitle {
  text-align: left;
}
.cid-tzjDxBprqD .mbr-section-title {
  text-align: left;
}
.cid-tzjE8ZP8S6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tzjE8ZP8S6 blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tF4dXpeULf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tzjxw0U4q7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxw0U4q7 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxw0U4q7 .mbr-text {
  text-align: left;
}
.cid-tzjJocOO0V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjJocOO0V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjJocOO0V img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjJocOO0V .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjJocOO0V .mbr-description {
  text-align: left;
}
.cid-tzjEYHKA27 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjEYHKA27 .mbr-section-subtitle {
  text-align: left;
}
.cid-tzjEYHKA27 .mbr-section-title {
  text-align: left;
}
.cid-tzjxwVjBqY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxwVjBqY .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxwVjBqY .mbr-text {
  text-align: left;
}
.cid-tGyQamjGDV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxxW2IjE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxxW2IjE .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxxW2IjE .mbr-text {
  text-align: left;
}
.cid-tzjK0ay6rs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjK0ay6rs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjK0ay6rs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjK0ay6rs .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjK0ay6rs .mbr-description {
  text-align: left;
}
.cid-tzqX4spmn2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzqX4spmn2 .mbr-section-subtitle {
  text-align: left;
}
.cid-tzqX4spmn2 .mbr-section-title {
  text-align: left;
}
.cid-tzjMmIioqV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzjMmIioqV .video-wrapper iframe {
  width: 100%;
}
.cid-tzjMmIioqV .mbr-section-title,
.cid-tzjMmIioqV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzjMmIioqV .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjMmIioqV .mbr-section-title {
  text-align: left;
}
.cid-tzjMmIioqV .mbr-text {
  color: #000000;
}
.cid-tzjMnDmhAr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzjMnDmhAr .video-wrapper iframe {
  width: 100%;
}
.cid-tzjMnDmhAr .mbr-section-title,
.cid-tzjMnDmhAr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzjMnDmhAr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjMnDmhAr .mbr-section-title {
  text-align: left;
}
.cid-tzjMnDmhAr .mbr-text {
  color: #000000;
}
.cid-tzjxxEy4vz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxxEy4vz .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxxEy4vz .mbr-text {
  text-align: left;
}
.cid-tGyQj50cdi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxxi63x4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxxi63x4 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxxi63x4 .mbr-text {
  text-align: left;
}
.cid-tzjQsYZ1Yy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjQsYZ1Yy .mbr-section-subtitle {
  text-align: left;
}
.cid-tzjQsYZ1Yy .mbr-section-title {
  text-align: left;
}
.cid-tzjOXNL2ba {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjOXNL2ba .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjOXNL2ba img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjOXNL2ba .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjOXNL2ba .mbr-description {
  text-align: left;
}
.cid-tzjxvE6Fs5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxvE6Fs5 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxvE6Fs5 .mbr-text {
  text-align: left;
}
.cid-tzjRCB7Jie {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjRCB7Jie .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjRCB7Jie img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjRCB7Jie .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjRCB7Jie .mbr-description {
  text-align: left;
}
.cid-tzqXrSuAWU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzqXrSuAWU .mbr-section-subtitle {
  text-align: left;
}
.cid-tzqXrSuAWU .mbr-section-title {
  text-align: left;
}
.cid-tzjxyl7X7a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxyl7X7a .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxyl7X7a .mbr-text {
  text-align: left;
}
.cid-tzjTm54ETT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjTm54ETT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjTm54ETT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjTm54ETT .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjTm54ETT .mbr-description {
  text-align: left;
}
.cid-tLiPzlCqUC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxwDK452 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxwDK452 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxwDK452 .mbr-text {
  text-align: left;
}
.cid-tzjVtzOLK1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzjVtzOLK1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzjVtzOLK1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzjVtzOLK1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjVtzOLK1 .mbr-description {
  text-align: left;
}
.cid-tzjxwiOX9z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxwiOX9z .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxwiOX9z .mbr-text {
  text-align: left;
}
.cid-tzr0yLzDgD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzr0yLzDgD .mbr-section-subtitle {
  text-align: left;
}
.cid-tzr0yLzDgD .mbr-section-title {
  text-align: left;
}
.cid-tzpk5gyf83 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzpk5gyf83 .video-wrapper iframe {
  width: 100%;
}
.cid-tzpk5gyf83 .mbr-section-title,
.cid-tzpk5gyf83 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzpk5gyf83 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzpk5gyf83 .mbr-section-title {
  text-align: left;
}
.cid-tzpk5gyf83 .mbr-text {
  color: #000000;
}
.cid-tzjxuzp6g0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxuzp6g0 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxuzp6g0 .mbr-text {
  text-align: left;
}
.cid-tzk19iF61Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzk19iF61Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzk19iF61Z img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzk19iF61Z .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzk19iF61Z .mbr-description {
  text-align: left;
}
.cid-tzjxuUirIW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxuUirIW .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxuUirIW .mbr-text {
  text-align: left;
}
.cid-tGyQuTsAvD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzk1WyFYjE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzk1WyFYjE .video-wrapper iframe {
  width: 100%;
}
.cid-tzk1WyFYjE .mbr-section-title,
.cid-tzk1WyFYjE .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzk1WyFYjE .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzk1WyFYjE .mbr-section-title {
  text-align: left;
}
.cid-tzk1WyFYjE .mbr-text {
  color: #000000;
}
.cid-t4HBFtxEem {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HBFtxEem .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HBFtxEem .mbr-section-title {
  text-align: left;
}
.cid-tzjxsJ7FOx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxsJ7FOx .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxsJ7FOx .mbr-text {
  text-align: left;
}
.cid-tLiQPFNybJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxtOJmOn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjxtOJmOn .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjxtOJmOn .mbr-text {
  text-align: left;
}
.cid-tzk79WqBVi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzk79WqBVi .mbr-section-subtitle {
  text-align: left;
}
.cid-tzk79WqBVi .mbr-section-title {
  text-align: left;
}
.cid-tzk7aWzSsh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tzk7aWzSsh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzk7aWzSsh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tzk7aWzSsh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzk7aWzSsh .mbr-description {
  text-align: left;
}
.cid-tLiQ2NgyZN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjUF0qdGT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjUF0qdGT .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjUF0qdGT .mbr-text {
  text-align: left;
}
.cid-tLiQpasNG4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzk8QUzxBr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzk8QUzxBr .video-wrapper iframe {
  width: 100%;
}
.cid-tzk8QUzxBr .mbr-section-title,
.cid-tzk8QUzxBr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzk8QUzxBr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzk8QUzxBr .mbr-section-title {
  text-align: left;
}
.cid-tzk8QUzxBr .mbr-text {
  color: #000000;
}
.cid-tzk8WjXgZl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzk8WjXgZl .video-wrapper iframe {
  width: 100%;
}
.cid-tzk8WjXgZl .mbr-section-title,
.cid-tzk8WjXgZl .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzk8WjXgZl .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzk8WjXgZl .mbr-section-title {
  text-align: left;
}
.cid-tzk8WjXgZl .mbr-text {
  color: #000000;
}
.cid-tzjYQ7UTTK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzjYQ7UTTK .video-wrapper iframe {
  width: 100%;
}
.cid-tzjYQ7UTTK .mbr-section-title,
.cid-tzjYQ7UTTK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzjYQ7UTTK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzjYQ7UTTK .mbr-section-title {
  text-align: left;
}
.cid-tzjYQ7UTTK .mbr-text {
  color: #000000;
}
.cid-tzjUG8SMRs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjUG8SMRs .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjUG8SMRs .mbr-text {
  text-align: left;
}
.cid-tzppYWTFWs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzppYWTFWs .mbr-section-subtitle {
  text-align: left;
}
.cid-tzppYWTFWs .mbr-section-title {
  text-align: left;
}
.cid-tBc6ZG5leU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBc6ZG5leU .mbr-section-subtitle {
  text-align: left;
}
.cid-tBc6ZG5leU .mbr-section-title {
  text-align: left;
}
.cid-tzpqzRfLVt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tzpqzRfLVt blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tzprdkTZgw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzprdkTZgw .mbr-section-subtitle {
  text-align: left;
}
.cid-tzprdkTZgw .mbr-section-title {
  text-align: left;
}
.cid-tzprokgtsY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tzprokgtsY blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tzptJgF7lG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzptJgF7lG .mbr-section-subtitle {
  text-align: left;
}
.cid-tzptJgF7lG .mbr-section-title {
  text-align: left;
}
.cid-tzpunl99wK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tzpunl99wK blockquote {
  border-color: #232323;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tzpwfkt2dk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzpwfkt2dk .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzpwfkt2dk .mbr-text {
  text-align: left;
}
.cid-tzpwprnkHs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzpwprnkHs .mbr-section-subtitle {
  text-align: left;
}
.cid-tzpwprnkHs .mbr-section-title {
  text-align: left;
}
.cid-tzpweKrWg7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzpweKrWg7 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzpweKrWg7 .mbr-text {
  text-align: left;
}
.cid-tzpwMRVraf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzpwMRVraf .mbr-section-subtitle {
  text-align: left;
}
.cid-tzpwMRVraf .mbr-section-title {
  text-align: left;
}
.cid-tzpxn7yYo2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tzpxn7yYo2 .video-wrapper iframe {
  width: 100%;
}
.cid-tzpxn7yYo2 .mbr-section-title,
.cid-tzpxn7yYo2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzpxn7yYo2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tzpxn7yYo2 .mbr-section-title {
  text-align: left;
}
.cid-tzpxn7yYo2 .mbr-text {
  color: #000000;
}
.cid-tzjUGKXuO3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzjUGKXuO3 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tzjUGKXuO3 .mbr-text {
  text-align: left;
}
.cid-tzpw24tlGy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzpw24tlGy .mbr-section-subtitle {
  text-align: left;
}
.cid-tzpw24tlGy .mbr-section-title {
  text-align: left;
}
.cid-tGyQNEk3Je {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tGyQNEk3Je .video-wrapper iframe {
  width: 100%;
}
.cid-tGyQNEk3Je .mbr-section-title,
.cid-tGyQNEk3Je .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tGyQNEk3Je .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGyQNEk3Je .mbr-section-title {
  text-align: left;
}
.cid-tBc8Wpqszo {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tBc8Wpqszo .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tBc8Wpqszo .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tBc8Wpqszo .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJEaBHdLH {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJEaBHdLH .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4HwMVj3MI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwMVj3MI .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HwMVj3MI .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t4HwMVj3MI .mbr-section-title {
  text-align: left;
}
.cid-t4HwMVGOMT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t4HwMVGOMT .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t4HwMVGOMT .mbr-text {
  text-align: left;
}
.cid-t4HwMVTC7R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t4HwMVTC7R .counter-container ol {
  margin-bottom: 0;
}
.cid-t4HwMVTC7R .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t4HwMW8ZMW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwMW8ZMW .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t4HwMW8ZMW .mbr-section-title {
  text-align: left;
}
.cid-t72u4Lm6eA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t72u4Lm6eA .video-wrapper iframe {
  width: 100%;
}
.cid-t72u4Lm6eA .mbr-section-title,
.cid-t72u4Lm6eA .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t72u4Lm6eA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t72u4Lm6eA .mbr-section-title {
  text-align: left;
}
.cid-t6JCO51TrU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6JCO51TrU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6JCO51TrU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6JCO51TrU .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JA058cEE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6JA058cEE .video-wrapper iframe {
  width: 100%;
}
.cid-t6JA058cEE .mbr-section-title,
.cid-t6JA058cEE .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6JA058cEE .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JA058cEE .mbr-section-title {
  text-align: left;
}
.cid-t6JJ3PtJSi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6JJ3PtJSi .video-wrapper iframe {
  width: 100%;
}
.cid-t6JJ3PtJSi .mbr-section-title,
.cid-t6JJ3PtJSi .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6JJ3PtJSi .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JJ3PtJSi .mbr-section-title {
  text-align: left;
}
.cid-t6KyATodxw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6KyATodxw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6KyATodxw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6KyATodxw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JFjyptlI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6JFjyptlI .video-wrapper iframe {
  width: 100%;
}
.cid-t6JFjyptlI .mbr-section-title,
.cid-t6JFjyptlI .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6JFjyptlI .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JFjyptlI .mbr-section-title {
  text-align: left;
}
.cid-t6JLhPye7T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6JLhPye7T .video-wrapper iframe {
  width: 100%;
}
.cid-t6JLhPye7T .mbr-section-title,
.cid-t6JLhPye7T .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6JLhPye7T .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JLhPye7T .mbr-section-title {
  text-align: left;
}
.cid-t6MCVC7DNW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MCVC7DNW .video-wrapper iframe {
  width: 100%;
}
.cid-t6MCVC7DNW .mbr-section-title,
.cid-t6MCVC7DNW .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MCVC7DNW .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MCVC7DNW .mbr-section-title {
  text-align: left;
}
.cid-t6MEQME8Bj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6MEQME8Bj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6MEQME8Bj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6MEQME8Bj .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MHn1kVMj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MHn1kVMj .video-wrapper iframe {
  width: 100%;
}
.cid-t6MHn1kVMj .mbr-section-title,
.cid-t6MHn1kVMj .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MHn1kVMj .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MHn1kVMj .mbr-section-title {
  text-align: left;
}
.cid-t6JHFNxowc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6JHFNxowc .video-wrapper iframe {
  width: 100%;
}
.cid-t6JHFNxowc .mbr-section-title,
.cid-t6JHFNxowc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6JHFNxowc .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6JHFNxowc .mbr-section-title {
  text-align: left;
}
.cid-t6MGqm9hJB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MGqm9hJB .video-wrapper iframe {
  width: 100%;
}
.cid-t6MGqm9hJB .mbr-section-title,
.cid-t6MGqm9hJB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MGqm9hJB .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MGqm9hJB .mbr-section-title {
  text-align: left;
}
.cid-t6MIn3mOsp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6MIn3mOsp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6MIn3mOsp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6MIn3mOsp .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MK4QY8OG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MK4QY8OG .video-wrapper iframe {
  width: 100%;
}
.cid-t6MK4QY8OG .mbr-section-title,
.cid-t6MK4QY8OG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MK4QY8OG .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MK4QY8OG .mbr-section-title {
  text-align: left;
}
.cid-t6MMuaBgNS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MMuaBgNS .video-wrapper iframe {
  width: 100%;
}
.cid-t6MMuaBgNS .mbr-section-title,
.cid-t6MMuaBgNS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MMuaBgNS .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MMuaBgNS .mbr-section-title {
  text-align: left;
}
.cid-t6MLViTpqw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MLViTpqw .video-wrapper iframe {
  width: 100%;
}
.cid-t6MLViTpqw .mbr-section-title,
.cid-t6MLViTpqw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MLViTpqw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MLViTpqw .mbr-section-title {
  text-align: left;
}
.cid-t4HwMWuqnI {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t4HwMWuqnI .mbr-section-subtitle {
  text-align: left;
}
.cid-t4HwMWuqnI .mbr-section-title {
  text-align: left;
}
.cid-t71SOVCld9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t71SOVCld9 .video-wrapper iframe {
  width: 100%;
}
.cid-t71SOVCld9 .mbr-section-title,
.cid-t71SOVCld9 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t71SOVCld9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t71SOVCld9 .mbr-section-title {
  text-align: left;
}
.cid-t71SQ2BRQ5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t71SQ2BRQ5 .video-wrapper iframe {
  width: 100%;
}
.cid-t71SQ2BRQ5 .mbr-section-title,
.cid-t71SQ2BRQ5 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t71SQ2BRQ5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t71SQ2BRQ5 .mbr-section-title {
  text-align: left;
}
.cid-t71SQoniIo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t71SQoniIo .video-wrapper iframe {
  width: 100%;
}
.cid-t71SQoniIo .mbr-section-title,
.cid-t71SQoniIo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t71SQoniIo .text-wrapper {
    padding: 2rem;
  }
}
.cid-t71SQoniIo .mbr-section-title {
  text-align: left;
}
.cid-t71SQKv0NB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t71SQKv0NB .video-wrapper iframe {
  width: 100%;
}
.cid-t71SQKv0NB .mbr-section-title,
.cid-t71SQKv0NB .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t71SQKv0NB .text-wrapper {
    padding: 2rem;
  }
}
.cid-t71SQKv0NB .mbr-section-title {
  text-align: left;
}
.cid-t71YgW3V6k {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t71YgW3V6k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t71YgW3V6k img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t71YgW3V6k .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7252E48Ch {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t7252E48Ch .video-wrapper iframe {
  width: 100%;
}
.cid-t7252E48Ch .mbr-section-title,
.cid-t7252E48Ch .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t7252E48Ch .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7252E48Ch .mbr-section-title {
  text-align: left;
}
.cid-t71Y3lsmaH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t71Y3lsmaH .video-wrapper iframe {
  width: 100%;
}
.cid-t71Y3lsmaH .mbr-section-title,
.cid-t71Y3lsmaH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t71Y3lsmaH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t71Y3lsmaH .mbr-section-title {
  text-align: left;
}
.cid-t6MOoo1DVG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 991px) {
  .cid-t6MOoo1DVG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6MOoo1DVG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6MOoo1DVG .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MMtzfmzM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t6MMtzfmzM .video-wrapper iframe {
  width: 100%;
}
.cid-t6MMtzfmzM .mbr-section-title,
.cid-t6MMtzfmzM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t6MMtzfmzM .text-wrapper {
    padding: 2rem;
  }
}
.cid-t6MMtzfmzM .mbr-section-title {
  text-align: left;
}
.cid-t72vjN9Pfd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t72vjN9Pfd .video-wrapper iframe {
  width: 100%;
}
.cid-t72vjN9Pfd .mbr-section-title,
.cid-t72vjN9Pfd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t72vjN9Pfd .text-wrapper {
    padding: 2rem;
  }
}
.cid-t72vjN9Pfd .mbr-section-title {
  text-align: left;
}
.cid-t4HwMXbg6w {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t4HwMXbg6w .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t4HwMXbg6w .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t4HwMXbg6w .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvJDyuYYjS {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJDyuYYjS .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYaqcxMxIR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYaqcxMxIR .mbr-section-subtitle {
  text-align: left;
}
.cid-sYaqcxMxIR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYaqcxMxIR .mbr-section-title {
  text-align: left;
}
.cid-sYaqcy8XdU {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYaqcy8XdU .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sYaqcy8XdU .mbr-text {
  text-align: left;
}
.cid-sYaqM6L2jy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYaqM6L2jy .mbr-section-subtitle {
  text-align: left;
}
.cid-sYaqM6L2jy .mbr-section-title {
  text-align: left;
}
.cid-sYaqN3lFRM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYaqN3lFRM .mbr-section-subtitle {
  text-align: left;
}
.cid-sYaqN3lFRM .mbr-section-title {
  text-align: left;
}
.cid-tvJJDc9Duy {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJJDc9Duy .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfv5u1K3OX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfv5u1K3OX .mbr-section-title {
  text-align: left;
}
.cid-tfv5u1K3OX .mbr-section-subtitle {
  text-align: left;
}
.cid-tfv5u1WmaB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfv5u1WmaB .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tfv5u1WmaB .mbr-text {
  text-align: left;
}
.cid-tfv5u23i20 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tfv5u23i20 .counter-container ol {
  margin-bottom: 0;
}
.cid-tfv5u23i20 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tfv5u2b1Zy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfv5u2b1Zy .mbr-section-subtitle {
  text-align: left;
}
.cid-tfv5u2b1Zy .mbr-section-title {
  text-align: left;
}
.cid-tqzbVumHdF {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqzbVumHdF .timeline-element {
  position: relative;
}
.cid-tqzbVumHdF .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tqzbVumHdF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tqzbVumHdF .mbr-section-title,
.cid-tqzbVumHdF .mbr-section-subtitle,
.cid-tqzbVumHdF .timeline-date {
  text-align: center;
}
.cid-tqzbVumHdF .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-tqzbVumHdF .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-tqzbVumHdF .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-tqzbVumHdF .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-tqzbVumHdF .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tqzbVumHdF .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tqzbVumHdF .timeline-date-wrapper,
  .cid-tqzbVumHdF .timeline-text-wrapper,
  .cid-tqzbVumHdF .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-tqzbVumHdF .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-tqzbVumHdF .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqzbVumHdF .timeline-date-wrapper,
  .cid-tqzbVumHdF .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tqzbVumHdF .timeline-date-wrapper,
  .cid-tqzbVumHdF .timeline-text-wrapper,
  .cid-tqzbVumHdF .image-wrapper {
    padding: 2rem;
  }
}
.cid-tqzbVumHdF .mbr-section-title {
  text-align: center;
}
.cid-tp84W4dNiM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tp84W4dNiM .video-wrapper iframe {
  width: 100%;
}
.cid-tp84W4dNiM .mbr-section-title,
.cid-tp84W4dNiM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tp84W4dNiM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tp84W4dNiM .mbr-section-title {
  text-align: left;
}
.cid-tfv5u2SiX9 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfv5u2SiX9 .mbr-section-subtitle {
  text-align: left;
}
.cid-tfv5u2SiX9 .mbr-section-title {
  text-align: left;
}
.cid-tpfarciJJh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpfarciJJh .video-wrapper iframe {
  width: 100%;
}
.cid-tpfarciJJh .mbr-section-title,
.cid-tpfarciJJh .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpfarciJJh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpfarciJJh .mbr-section-title {
  text-align: left;
}
.cid-tpfphVK6cW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpfphVK6cW .video-wrapper iframe {
  width: 100%;
}
.cid-tpfphVK6cW .mbr-section-title,
.cid-tpfphVK6cW .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpfphVK6cW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpfphVK6cW .mbr-section-title {
  text-align: left;
}
.cid-tpqlpZzuMq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpqlpZzuMq .mbr-section-subtitle {
  text-align: left;
}
.cid-tpqlpZzuMq .mbr-section-title {
  text-align: left;
}
.cid-tpSUk04p17 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpSUk04p17 .mbr-section-subtitle {
  text-align: left;
}
.cid-tpSUk04p17 .mbr-section-title {
  text-align: left;
}
.cid-tpN0HpwiyC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpN0HpwiyC .video-wrapper iframe {
  width: 100%;
}
.cid-tpN0HpwiyC .mbr-section-title,
.cid-tpN0HpwiyC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpN0HpwiyC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpN0HpwiyC .mbr-section-title {
  text-align: left;
}
.cid-tpSYqTltVY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpSYqTltVY .mbr-section-subtitle {
  text-align: left;
}
.cid-tpSYqTltVY .mbr-section-title {
  text-align: left;
}
.cid-tpN64qR3u4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpN64qR3u4 .video-wrapper iframe {
  width: 100%;
}
.cid-tpN64qR3u4 .mbr-section-title,
.cid-tpN64qR3u4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpN64qR3u4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpN64qR3u4 .mbr-section-title {
  text-align: left;
}
.cid-tpZ1WzqkXU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpZ1WzqkXU .mbr-section-subtitle {
  text-align: left;
}
.cid-tpZ1WzqkXU .mbr-section-title {
  text-align: left;
}
.cid-tpMVN4KplG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpMVN4KplG .video-wrapper iframe {
  width: 100%;
}
.cid-tpMVN4KplG .mbr-section-title,
.cid-tpMVN4KplG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpMVN4KplG .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpMVN4KplG .mbr-section-title {
  text-align: left;
}
.cid-tpSYDBrXPQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpSYDBrXPQ .mbr-section-subtitle {
  text-align: left;
}
.cid-tpSYDBrXPQ .mbr-section-title {
  text-align: left;
}
.cid-tp8254W5iu {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tp8254W5iu .mbr-section-subtitle {
  text-align: left;
}
.cid-tp8254W5iu .mbr-section-title {
  text-align: left;
}
.cid-tpYGCZzprE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpYGCZzprE .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tpYGCZzprE .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tpYGCZzprE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tpYGCZzprE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tpYGCZzprE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tpYGCZzprE .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tpYGCZzprE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tpYGCZzprE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tpYGCZzprE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpYGCZzprE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tpYOcba8DO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpYOcba8DO .video-wrapper iframe {
  width: 100%;
}
.cid-tpYOcba8DO .mbr-section-title,
.cid-tpYOcba8DO .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpYOcba8DO .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpYOcba8DO .mbr-section-title {
  text-align: left;
}
.cid-tpYMDNWVO9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpYMDNWVO9 .mbr-section-subtitle {
  text-align: left;
}
.cid-tpYMDNWVO9 .mbr-section-title {
  text-align: left;
}
.cid-ty30mPbmTS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ty30mPbmTS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ty30mPbmTS .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-ty30mPbmTS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ty30mPbmTS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ty30mPbmTS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpYROpeoKL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tpYROpeoKL .mbr-section-subtitle {
  text-align: left;
}
.cid-tpYROpeoKL .mbr-section-title {
  text-align: left;
}
.cid-tpN6QpjtpT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpN6QpjtpT .video-wrapper iframe {
  width: 100%;
}
.cid-tpN6QpjtpT .mbr-section-title,
.cid-tpN6QpjtpT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpN6QpjtpT .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpN6QpjtpT .mbr-section-title {
  text-align: left;
}
.cid-tpN6g9Mg6E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tpN6g9Mg6E .video-wrapper iframe {
  width: 100%;
}
.cid-tpN6g9Mg6E .mbr-section-title,
.cid-tpN6g9Mg6E .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpN6g9Mg6E .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpN6g9Mg6E .mbr-section-title {
  text-align: left;
}
.cid-tq0uvgZSbq {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tq0uvgZSbq .mbr-section-subtitle {
  text-align: left;
}
.cid-tq0uvgZSbq .mbr-section-title {
  text-align: left;
}
.cid-tq4mj8mRDd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tq4mj8mRDd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tq4mj8mRDd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tq4mj8mRDd .text-wrapper {
    padding: 2rem;
  }
}
.cid-tq4mj8mRDd .mbr-description {
  text-align: left;
}
.cid-tq4mjXm21E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tq4mjXm21E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tq4mjXm21E img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tq4mjXm21E .text-wrapper {
    padding: 2rem;
  }
}
.cid-tq4mjXm21E .mbr-description {
  text-align: left;
}
.cid-tq4tCc5FCu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tq4tCc5FCu .mbr-section-subtitle {
  text-align: left;
}
.cid-tq4tCc5FCu .mbr-section-title {
  text-align: left;
}
.cid-tqtCQMuEvc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqtCQMuEvc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqtCQMuEvc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqtCQMuEvc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqtCQMuEvc .mbr-description {
  text-align: left;
}
.cid-tqtFZ46o2N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqtFZ46o2N .mbr-section-subtitle {
  text-align: left;
}
.cid-tqtFZ46o2N .mbr-section-title {
  text-align: left;
}
.cid-tp82z9Sg5H {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tp82z9Sg5H .mbr-section-subtitle {
  text-align: left;
}
.cid-tp82z9Sg5H .mbr-section-title {
  text-align: left;
}
.cid-tqy3Qs4EtS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tqy3Qs4EtS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqy3Qs4EtS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqy3Qs4EtS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqy3Qs4EtS .mbr-description {
  text-align: left;
}
.cid-tqy3HvYMFu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqy3HvYMFu .mbr-section-subtitle {
  text-align: left;
}
.cid-tqy3HvYMFu .mbr-section-title {
  text-align: left;
}
.cid-tAfUukMrB4 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tAfUukMrB4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tAfUukMrB4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tAfUukMrB4 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  content: "✓";
}
.cid-tvFWIEwW23 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvFWIEwW23 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmobY2K7GM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmobY2K7GM .mbr-section-subtitle {
  text-align: left;
}
.cid-tmobY2K7GM .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tmobY2K7GM .mbr-section-title {
  text-align: left;
}
.cid-tmobY38p6A {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmobY38p6A .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tmobY38p6A .mbr-text {
  text-align: left;
}
.cid-tmobY3jTEX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e43f3f;
}
.cid-tmobY3jTEX .counter-container ol {
  margin-bottom: 0;
}
.cid-tmobY3jTEX .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tmobY4fnGy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tmobY4fnGy .video-wrapper iframe {
  width: 100%;
}
.cid-tmobY4fnGy .mbr-section-title,
.cid-tmobY4fnGy .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tmobY4fnGy .text-wrapper {
    padding: 2rem;
  }
}
.cid-tmobY4fnGy .mbr-section-title {
  text-align: left;
}
.cid-tmobY5aPnm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tmobY5aPnm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tmobY5aPnm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tmobY5aPnm .text-wrapper {
    padding: 2rem;
  }
}
.cid-tmobY5Fj8G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tmobY5Fj8G .video-wrapper iframe {
  width: 100%;
}
.cid-tmobY5Fj8G .mbr-section-title,
.cid-tmobY5Fj8G .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tmobY5Fj8G .text-wrapper {
    padding: 2rem;
  }
}
.cid-tmobY5Fj8G .mbr-section-title {
  text-align: left;
}
.cid-tmobYaguqb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmobYaguqb .mbr-section-subtitle {
  text-align: left;
}
.cid-tmobYaguqb .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tmobYaguqb .mbr-section-title {
  text-align: left;
}
.cid-tmobYauxCJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmobYauxCJ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tmobYauxCJ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tmobYauxCJ .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tvJqd8KKsk {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJqd8KKsk .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDioK4Cp2G {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDioK4Cp2G .mbr-section-title {
  text-align: left;
}
.cid-tDioK4Cp2G .mbr-section-subtitle {
  text-align: left;
}
.cid-tDioLnQRlG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDioLnQRlG .line {
  background-color: #232323;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDioLnQRlG .mbr-text {
  text-align: left;
}
.cid-tDioKTFh4Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDioKTFh4Y .counter-container ol {
  margin-bottom: 0;
}
.cid-tDioKTFh4Y .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tDisnz9xJw {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDisnz9xJw .mbr-section-subtitle {
  text-align: left;
}
.cid-tDisnz9xJw .mbr-section-title {
  text-align: left;
}
.cid-tDiu33fHk1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu33fHk1 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu33fHk1 .mbr-text {
  text-align: left;
}
.cid-tDiu9aoLsk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu9aoLsk .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu9aoLsk .mbr-text {
  text-align: left;
}
.cid-tDisn94R01 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDisn94R01 .mbr-section-subtitle {
  text-align: left;
}
.cid-tDisn94R01 .mbr-section-title {
  text-align: left;
}
.cid-tDiu6gRlO6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu6gRlO6 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu6gRlO6 .mbr-text {
  text-align: left;
}
.cid-tDiu3S7OlQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu3S7OlQ .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu3S7OlQ .mbr-text {
  text-align: left;
}
.cid-tDiu4wa2Nm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu4wa2Nm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu4wa2Nm .mbr-text {
  text-align: left;
}
.cid-tDiu56HwQu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu56HwQu .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu56HwQu .mbr-text {
  text-align: left;
}
.cid-tDiu5LiqWY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu5LiqWY .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu5LiqWY .mbr-text {
  text-align: left;
}
.cid-tDiu6Lqihl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu6Lqihl .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu6Lqihl .mbr-text {
  text-align: left;
}
.cid-tDiu7hx7F2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDiu7hx7F2 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDiu7hx7F2 .mbr-text {
  text-align: left;
}
.cid-tDivSQyxoT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDivSQyxoT .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDivSQyxoT .mbr-text {
  text-align: left;
}
.cid-tDioMNIVQG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDioMNIVQG .mbr-section-subtitle {
  text-align: left;
}
.cid-tDioMNIVQG .mbr-section-title {
  text-align: left;
}
.cid-tDioO4ALew {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDioO4ALew .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tDioO4ALew .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tDioO4ALew .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #353535;
  color: #353535;
  content: "✓";
}
.cid-tDipzf2OdC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffb5b5;
}
.cid-tDipzf2OdC .mbr-section-subtitle {
  text-align: left;
}
.cid-tDipzf2OdC .mbr-section-title {
  text-align: left;
}
.cid-tDioNDJ8bd {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDioNDJ8bd .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-tIDvRieO3j {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tIDvRieO3j .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tIDvRieO3j .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tIDvRieO3j .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tIDvRieO3j .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tIDvRieO3j .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tIDvRieO3j .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tIDvRieO3j .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tIDvRieO3j .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tIDvRieO3j .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tIDvRieO3j .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tIDvRieO3j .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tIDvRieO3j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uujCOsjACE .navbar-dropdown {
  position: relative !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujCOsjACE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujCOsjACE .dropdown-item:hover,
.cid-uujCOsjACE .dropdown-item:focus {
  background: #47b5ed !important;
  color: white !important;
}
.cid-uujCOsjACE .dropdown-item:hover span {
  color: white;
}
.cid-uujCOsjACE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujCOsjACE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujCOsjACE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujCOsjACE .nav-link {
  position: relative;
}
.cid-uujCOsjACE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .container {
    flex-wrap: nowrap;
  }
}
.cid-uujCOsjACE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujCOsjACE .dropdown-menu,
.cid-uujCOsjACE .navbar.opened {
  background: #353535 !important;
}
.cid-uujCOsjACE .nav-item:focus,
.cid-uujCOsjACE .nav-link:focus {
  outline: none;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujCOsjACE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujCOsjACE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujCOsjACE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.opened {
  transition: all 0.3s;
}
.cid-uujCOsjACE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujCOsjACE .navbar .navbar-logo img {
  width: auto;
}
.cid-uujCOsjACE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujCOsjACE .navbar.collapsed {
  justify-content: center;
}
.cid-uujCOsjACE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujCOsjACE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujCOsjACE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujCOsjACE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujCOsjACE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujCOsjACE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujCOsjACE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujCOsjACE .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-uujCOsjACE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujCOsjACE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujCOsjACE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujCOsjACE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujCOsjACE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujCOsjACE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uujCOsjACE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uujCOsjACE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujCOsjACE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujCOsjACE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uujCOsjACE .dropdown-item.active,
.cid-uujCOsjACE .dropdown-item:active {
  background-color: transparent;
}
.cid-uujCOsjACE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujCOsjACE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uujCOsjACE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujCOsjACE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujCOsjACE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujCOsjACE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujCOsjACE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujCOsjACE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujCOsjACE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujCOsjACE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uujCOsjACE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujCOsjACE .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-uujCOsjACE .navbar {
    height: 70px;
  }
  .cid-uujCOsjACE .navbar.opened {
    height: auto;
  }
  .cid-uujCOsjACE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
